aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2021-01-07 11:54:32 -0600
committerMax Isom <[email protected]>2021-01-07 11:54:32 -0600
commit5a4e509f7e57e7c33cfffbbfc919e9af6dbb5905 (patch)
tree39ce30858f66dc87a58c68dcc7dd7c7b489daae3
parent1216d78d972122e31d3b0a646318ee1bfee4b1b9 (diff)
downloadmuse-5a4e509f7e57e7c33cfffbbfc919e9af6dbb5905.tar.xz
muse-5a4e509f7e57e7c33cfffbbfc919e9af6dbb5905.zip
Copy yarn.lock when building
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
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