From fd51a13a1c378d51c66e470065e8831406e8ecc4 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Tue, 19 May 2020 13:46:06 -0700 Subject: [PATCH] Pin versions in Dockerfile Also fixes linting Fixes #11 --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f318806..a725521 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ -FROM alpine -MAINTAINER ViViDboarder +FROM alpine:3.11 -RUN apk -Uuv add bash curl ca-certificates +RUN apk --no-cache add bash=~5.0 curl=~7.67 ca-certificates=~20191127 COPY push.sh /bin/ RUN chmod +x /bin/push.sh -ENTRYPOINT /bin/push.sh +ENTRYPOINT ["/bin/push.sh"]