From bcea60cea50794d2bc56b11ecbe2dc1964122b67 Mon Sep 17 00:00:00 2001 From: lennoxlotl Date: Tue, 22 Oct 2024 00:41:41 +0200 Subject: [PATCH] fix: dockerfile being wrong --- api/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 13a4873..6fb1c4b 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /api COPY ./api . RUN apt update && apt install -y ca-certificates +RUN chmod +x /api/api EXPOSE 8000 -CMD ["api"] \ No newline at end of file +CMD ["/api/api"] \ No newline at end of file