homeassistant-addon-repository/minio-backup/Dockerfile

12 lines
166 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
2023-10-24 16:44:52 +00:00
RUN /usr/local/bin/python -m pip install --upgrade minio
2023-10-22 21:21:25 +00:00
CMD [ "/run.py" ]