mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00: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"] |