From ae3d5ffe9df5740acfdc0035e7a111e3d2296fe3 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 31 Mar 2020 00:51:34 +0200 Subject: [PATCH] Dockerfile: optimize copying a bit --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f26f69297b..8415a5eebc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ COPY plugins /app/plugins RUN yarn -COPY . . +COPY lerna.json tsconfig.json .eslintignore .eslintrc.js /app/ +COPY scripts/ /app/scripts RUN yarn build