Files
wanderer/docs/Dockerfile
Christian Beutel da7af5122e adds docs Dockerfile
2024-06-11 00:51:39 +02:00

12 lines
160 B
Docker

FROM node:slim 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