mirror of
https://gitee.com/docsifyjs/docsify.git
synced 2024-11-29 18:48:14 +08:00
9 lines
188 B
Docker
9 lines
188 B
Docker
FROM mcr.microsoft.com/playwright:focal
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN rm package-lock.json
|
|
RUN npm install
|
|
RUN npx playwright install
|
|
RUN npm run build
|
|
ENTRYPOINT ["npm", "run"]
|
|
CMD ["test"] |