corrections

This commit is contained in:
suricatingss
2025-12-05 00:22:13 +00:00
parent 731273b1b0
commit c4c189d2a9

View File

@@ -16,6 +16,8 @@
FROM node:22-alpine FROM node:22-alpine
WORKDIR /app WORKDIR /app
# Copy the build's result
COPY .output/ /app/
# Change the port and host # Change the port and host
ENV PORT=3000 ENV PORT=3000
@@ -23,6 +25,6 @@ ENV HOST=0.0.0.0
EXPOSE 3000 EXPOSE 3000
VOLUME [ "/app" ] #VOLUME [ "/app" ]
CMD ["node", "/app/server/index.mjs"] CMD ["node", "/app/server/index.mjs"]