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