Created Dockerfile

This commit is contained in:
tofran 2020-08-07 23:18:14 +01:00
parent 8f69f332af
commit a695ded09d

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM alpine
RUN apk add bash coreutils
WORKDIR /code
COPY ./backup.sh .
ENTRYPOINT ["/code/backup.sh"]