From 38d5eae362a2172ac1346b465a90df71fea8b85d Mon Sep 17 00:00:00 2001 From: Timo Furrer Date: Sun, 17 Oct 2021 15:57:11 +0200 Subject: [PATCH] Use CMD instead of ENTRYPOINT for alpine image --- Dockerfile.alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 802e1d5..ffe13ff 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -8,4 +8,4 @@ RUN apk update \ && apk add -U --no-cache ca-certificates COPY --from=build /bin/docatl /bin/docatl WORKDIR /docs -ENTRYPOINT [ "/bin/docatl" ] \ No newline at end of file +CMD [ "/bin/docatl" ] \ No newline at end of file