mirror of
https://github.com/danbulant/pinguin
synced 2026-05-19 04:08:43 +00:00
10 lines
140 B
Docker
10 lines
140 B
Docker
FROM node:20
|
|
|
|
COPY . /usr/src/app/
|
|
|
|
WORKDIR /usr/src/app
|
|
RUN corepack enable pnpm
|
|
RUN pnpm install
|
|
RUN pnpm run build
|
|
|
|
CMD ["npm", "start"]
|