hassio-auto-backup/Dockerfile
Paolo Asperti 4f0638bbd3
Some checks failed
continuous-integration/drone/push Build is failing
initial import
2021-09-14 15:30:49 +02:00

15 lines
208 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Copy scripts for add-on
COPY run.sh /
COPY backup.sh /
RUN apk add -U jq bc curl && \
chmod a+x /run.sh && \
chmod a+x /backup.sh
CMD [ "/run.sh" ]