Spaces:
Running
Running
File size: 274 Bytes
8a8fe1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM ghcr.io/puppeteer/puppeteer:20.5.0
USER root
WORKDIR /usr/src/app
COPY --chown=pptruser package.json /usr/src/app/
RUN npm i --registry=https://registry.npm.taobao.org
COPY --chown=pptruser . /usr/src/app
VOLUME [ "/usr/src/app/run" ]
EXPOSE 3000
CMD npm start
|