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
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
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 \