We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24d26f commit 0bc8329Copy full SHA for 0bc8329
1 file changed
Dockerfile
@@ -3,6 +3,11 @@ FROM node:8.10
3
RUN echo '{"allow_root": true}' > /root/.bowerrc
4
5
WORKDIR /app
6
-ADD . /app
+
7
+COPY package.json yarn.lock bower.json ./
8
9
+RUN yarn --frozen-lockfile
10
11
+COPY . /app
12
13
EXPOSE 3000
0 commit comments