web/Dockerfile
Atridad Lahiji b0e35c574c
All checks were successful
Docker Deploy / build-and-push (push) Successful in 1m10s
Added adapter
2025-01-23 00:12:38 -06:00

13 lines
187 B
Docker

FROM node:lts-alpine as runtime
WORKDIR /app
COPY . .
RUN npm i -g pnpm
RUN pnpm install
RUN pnpm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs