From b443c466bf06cff4d69634ecb7ff75703413a015 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Fri, 29 May 2020 23:13:38 +0200 Subject: [PATCH] Remove bash --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52f67fd..a825074 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM alpine:3.11.6 COPY runaction.sh /action/runaction.sh -RUN apk add --no-cache shellcheck bash +RUN apk add --no-cache shellcheck -ENTRYPOINT ["bash", "/action/runaction.sh"] +ENTRYPOINT ["sh", "/action/runaction.sh"] LABEL "name"="ShellCheck" LABEL "maintainer"="Ludeeus "