initial import
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-09-14 15:30:49 +02:00
commit 4f0638bbd3
8 changed files with 304 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
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" ]