1
0

Use yarn caches when building docker images

This commit is contained in:
kolaente
2020-12-10 15:46:51 +01:00
parent 0ca9862ffe
commit 6b0edd2d9a
2 changed files with 47 additions and 4 deletions

View File

@ -3,6 +3,7 @@ FROM node:13.14.0 AS compile-image
WORKDIR /build
ENV YARN_CACHE_FOLDER .cache/yarn/
COPY . ./
RUN \