Create Dockerfile

This commit is contained in:
Jan Kocoń
2025-12-09 14:17:54 +01:00
committed by GitHub
parent f281ec4cd8
commit 03645be0e3

12
minio_backup/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
RUN apk add --no-cache duplicity py-boto3 openssl
# Copy data for add-on
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]