Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel 3626ea613c Merge pull request #242 from linkwarden/dev
minor change to DockerFile
2023-10-20 23:07:25 -04:00
daniel31x13 aaebdc5da7 minor change to DockerFile 2023-10-20 23:06:09 -04:00
+7 -4
View File
@@ -8,10 +8,13 @@ WORKDIR /data
COPY ./package.json ./yarn.lock ./playwright.config.ts ./
RUN yarn && \
npx playwright install-deps && \
apt-get clean && \
yarn cache clean
RUN yarn
RUN npx playwright install-deps
RUN apt-get clean
RUN yarn cache clean
COPY . .