From 2f2aa0d97fc8dfbed979cbc05a5380c256ba0922 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Sat, 27 Jun 2020 19:42:52 +0200 Subject: [PATCH] Update alpine to 3.12.0 --- Dockerfile | 6 +++--- runaction.sh => runaction | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename runaction.sh => runaction (100%) diff --git a/Dockerfile b/Dockerfile index eddf64c..e4783f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM alpine:3.11.6 +FROM alpine:3.12.0 RUN apk add --no-cache shellcheck bash -COPY runaction.sh /action/runaction.sh -ENTRYPOINT ["bash", "/action/runaction.sh"] \ No newline at end of file +COPY runaction /action/runaction +ENTRYPOINT ["bash", "/action/runaction"] \ No newline at end of file diff --git a/runaction.sh b/runaction similarity index 100% rename from runaction.sh rename to runaction