web/Dockerfile
Atridad Lahiji ae039f00b6
Some checks failed
Docker Deploy / build-and-push (push) Has been cancelled
JMAP
2025-01-23 16:48:19 -06:00

18 lines
250 B
Docker

FROM node:lts AS runtime
WORKDIR /app
# Copy files
COPY . .
# Install pnpm
RUN npm i -g pnpm
# Install dependencies and build
RUN pnpm install
RUN pnpm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]