sudovanilla-website/Dockerfile
2024-05-13 23:34:06 -04:00

12 lines
No EOL
159 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 ./dist/server/entry.mjs