natty-gay/Dockerfile

11 lines
155 B
Docker
Raw Normal View History

2024-04-13 18:55:09 +00:00
FROM docker.io/node:21-bullseye
RUN corepack enable
ADD . .
RUN pnpm i --frozen-lockfile
RUN pnpm run build
CMD [ "node", ".output/server/index.mjs" ]