From 1f1f839e9444bc91408807f1d8233ce0c5863869 Mon Sep 17 00:00:00 2001 From: Nicolas MASSE Date: Sat, 27 Nov 2021 19:46:39 +0100 Subject: [PATCH] fix entrypoint --- Containerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 3d31c50..4e55a1f 100644 --- a/Containerfile +++ b/Containerfile @@ -2,4 +2,6 @@ FROM scratch ARG BUILT_ARTIFACT ADD "$BUILT_ARTIFACT" / EXPOSE 8080 -ENTRYPOINT /photo-bot +ENTRYPOINT [ "/photo-bot" ] +CMD [] +