From c4c189d2a9d48ef13bddaa104c99525a447af4a7 Mon Sep 17 00:00:00 2001 From: suricatingss Date: Fri, 5 Dec 2025 00:22:13 +0000 Subject: [PATCH] corrections --- dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 8ac81e1..c32c5ba 100644 --- a/dockerfile +++ b/dockerfile @@ -16,6 +16,8 @@ FROM node:22-alpine WORKDIR /app +# Copy the build's result +COPY .output/ /app/ # Change the port and host ENV PORT=3000 @@ -23,6 +25,6 @@ ENV HOST=0.0.0.0 EXPOSE 3000 -VOLUME [ "/app" ] +#VOLUME [ "/app" ] CMD ["node", "/app/server/index.mjs"] \ No newline at end of file