Files
wanderer/docs/Dockerfile
Christian Beutel 0e1fdfcf42 adds docs Dockerfile
2024-06-11 00:05:59 +02:00

12 lines
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