Create Dockerfile

This commit is contained in:
Jan Kocoń
2025-12-09 13:22:45 +01:00
committed by GitHub
parent 409cf5957e
commit 5c14677ccb

12
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" ]