feat: add CICD pipeline

This commit is contained in:
2023-09-20 21:28:43 +02:00
parent cd307aeafd
commit e944677876
2 changed files with 30 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM alpine:3.17
# Setup correct TZ
RUN apk add alpine-conf
RUN /sbin/setup-timezone -z UTC
RUN apk add restic curl
WORKDIR /app
COPY ./src/entry.sh /app/
COPY ./src/backup.sh /app/
CMD [ "/bin/sh", "entry.sh" ]