From 151417b2bfcbc93556d903b3b9978c1543de5c2e Mon Sep 17 00:00:00 2001 From: Thom Breugelmans Date: Fri, 6 Dec 2024 20:30:03 +0100 Subject: [PATCH] fix: server entrypoint was not executable anymore --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c799cf1..ead74bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -94,5 +94,6 @@ USER nobody # above and adding an entrypoint. See https://github.com/krallin/tini for details # ENTRYPOINT ["/tini", "--"] +RUN chmod +x /app/bin/server EXPOSE 8080:8080 CMD ["/app/bin/server"]