mirror of
https://github.com/docsifyjs/docsify.git
synced 2026-01-18 15:13:00 +00:00
10 lines
187 B
Docker
10 lines
187 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"]
|