14 lines
137 B
Docker
14 lines
137 B
Docker
|
FROM node:17-alpine
|
||
|
|
||
|
RUN npm install -g pnpm
|
||
|
|
||
|
COPY . /cq
|
||
|
|
||
|
WORKDIR /cq
|
||
|
|
||
|
RUN pnpm install
|
||
|
|
||
|
RUN pnpm build
|
||
|
|
||
|
CMD ["sh", "-c", "node build"]
|