mirror of https://github.com/docsifyjs/docsify.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
188 B
Docker
9 lines
188 B
Docker
3 years ago
|
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"]
|