mirror of
https://github.com/danbulant/facebug
synced 2026-05-19 04:18:44 +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"]
|