sudovanilla-website/Dockerfile
2024-10-19 16:19:13 -04:00

11 lines
No EOL
143 B
Docker

FROM node:lts AS runtime
WORKDIR /app
COPY . .
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs