Files
personal-website/Dockerfile
syntaxbullet bfefaa0055 Initial commit
2026-02-09 12:54:10 +01:00

14 lines
174 B
Docker

FROM node:22-alpine 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"]