Skip to content

Commit

Permalink
Make builds more deterministic
Browse files Browse the repository at this point in the history
  • Loading branch information
peterrus committed Feb 11, 2022
1 parent d47ead2 commit 23225cd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
FROM alpine:latest
FROM alpine:3.15

COPY entrypoint.sh /
COPY dobackup.sh /

RUN \
mkdir -p /aws && \
apk -Uuv add groff less python3 py3-pip && \
pip3 install awscli && \
pip3 install awscli==1.22.54 && \
apk --purge -v del py-pip && \
rm /var/cache/apk/* && \
chmod +x /entrypoint.sh /dobackup.sh


ENTRYPOINT /entrypoint.sh

0 comments on commit 23225cd

Please sign in to comment.