sudovanilla-website/Dockerfile

12 lines
159 B
Text
Raw Normal View History

2024-05-13 22:34:06 -05:00
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