Files
joeac.net/Dockerfile
2025-12-12 14:13:25 +00:00

13 lines
175 B
Docker

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"]