Merge pull request #8 from tofran/docker-all-the-things

Created Dockerfile
This commit is contained in:
Nicolas Chan 2020-09-10 17:31:59 -07:00 committed by GitHub
commit af46b7f3d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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"]