Updated docker files

This commit is contained in:
2024-01-14 17:57:32 +01:00
parent fca72cceda
commit fd2b3d6b9a
2 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
FROM node:20.9.0-alpine3.18
COPY package.json ./
COPY yarn.lock ./
RUN mkdir /cache
COPY package.json /cache
COPY yarn.lock /cache
WORKDIR /cache
RUN yarn install