Merge pull request #242 from linkwarden/dev

minor change to DockerFile
This commit is contained in:
Daniel 2023-10-20 23:07:25 -04:00 committed by GitHub
commit 3626ea613c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,10 +8,13 @@ WORKDIR /data
COPY ./package.json ./yarn.lock ./playwright.config.ts ./ COPY ./package.json ./yarn.lock ./playwright.config.ts ./
RUN yarn && \ RUN yarn
npx playwright install-deps && \
apt-get clean && \ RUN npx playwright install-deps
yarn cache clean
RUN apt-get clean
RUN yarn cache clean
COPY . . COPY . .