From f85dbe42f21556a0e55f3c0fa12435d47456915b Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 8 Aug 2021 18:35:12 +0100 Subject: [PATCH] :whale: Adds yarn.lock into amd Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5814f880..9cde9c99 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ WORKDIR ${DIRECTORY} # Copy over both 'package.json' and 'package-lock.json' (if available) COPY package*.json ./ +COPY yarn.lock ./ # Install project dependencies RUN yarn