Initial commit

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-03-22 18:02:55 +02:00
commit 992214329c
3 changed files with 77 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM alpine
RUN apk add --no-cache git
RUN mkdir /git
COPY sync.sh .
RUN chmod +x sync.sh
RUN adduser -D -u 1000 -s /bin/sh app
RUN chown -R app:app /git
USER app
WORKDIR /git
CMD ["/sync.sh"]