From 5a4e509f7e57e7c33cfffbbfc919e9af6dbb5905 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Thu, 7 Jan 2021 11:54:32 -0600 Subject: [PATCH] Copy yarn.lock when building --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 85e2f3d..a2b81cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ RUN apk add --no-cache ffmpeg python make g++ WORKDIR /usr/app -COPY package* ./ +COPY package.json . +COPY yarn.lock . # Install prod dependencies RUN yarn install --prod