mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 14:31:44 +01:00
9 lines
176 B
Docker
9 lines
176 B
Docker
FROM amir20/docker-alpine-puppeteer:edge
|
|
|
|
COPY --chown=pptruser:pptruser package*.json yarn.lock /app/
|
|
RUN yarn
|
|
|
|
COPY --chown=pptruser:pptruser . /app/
|
|
|
|
CMD [ "yarn", "test"]
|