Dockerise

This commit is contained in:
2025-12-12 14:13:25 +00:00
parent e5cc05519a
commit ed6a6428a3
2 changed files with 17 additions and 0 deletions

5
.dockerignore Normal file
View File

@@ -0,0 +1,5 @@
node_modules/
dist/
.helix/
.vscode/
.zed/

12
Dockerfile Normal file
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", "./website/dist/server/entry.mjs"]