homeassistant-addon-repository/minio-backup/Dockerfile

12 lines
142 B
Docker
Raw Normal View History

2023-10-22 21:21:25 +00:00
ARG BUILD_FROM
FROM ${BUILD_FROM}
ENV LANG C.UTF-8
COPY run.py /
RUN chmod a+x /run.py
RUN pip3 install --upgrade minio
CMD [ "/run.py" ]