Add Dockerfile

This commit is contained in:
2026-01-05 11:25:40 +11:00
parent 2afa042d35
commit 31734551d9
+12
View File
@@ -0,0 +1,12 @@
FROM node:lts AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs