From 8af128c6d00b9bbc79106f3e1a0a2677da37de81 Mon Sep 17 00:00:00 2001 From: Daniel Fahlke Date: Tue, 23 Jul 2019 11:57:24 +0200 Subject: [PATCH] copy yarn.lock together with package.json --- docker/vue-storefront-api/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/vue-storefront-api/Dockerfile b/docker/vue-storefront-api/Dockerfile index 6e1b0118..c474f186 100644 --- a/docker/vue-storefront-api/Dockerfile +++ b/docker/vue-storefront-api/Dockerfile @@ -7,6 +7,7 @@ WORKDIR /var/www RUN apk add --no-cache curl git COPY package.json ./ +COPY yarn.lock ./ RUN apk add --no-cache --virtual .build-deps ca-certificates wget && \ yarn install --no-cache && \