We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b33f5b commit 1d9febbCopy full SHA for 1d9febb
Dockerfile
@@ -4,6 +4,7 @@ FROM node:7.9.0-alpine
4
WORKDIR /usr/src/app
5
6
COPY ./build/package.json .
7
+COPY ./build/yarn.lock .
8
9
# Install Node.js dependencies
10
RUN yarn install --production --no-progress
tools/copy.js
@@ -29,6 +29,7 @@ async function copy() {
29
},
30
}, null, 2)),
31
copyFile('LICENSE.txt', 'build/LICENSE.txt'),
32
+ copyFile('yarn.lock', 'build/yarn.lock'),
33
copyDir('public', 'build/public'),
34
]);
35
0 commit comments