We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f189afe commit 71ac8bbCopy full SHA for 71ac8bb
front-end/Dockerfile
@@ -3,8 +3,9 @@ FROM node:5
3
ADD . /var/www
4
WORKDIR /var/www
5
6
-RUN npm install
7
-RUN npm install -g gulp
+RUN npm install -g gulp-cli \
+ && rm -rf node_modules && rm -rf dist \
8
+ && npm install
9
10
EXPOSE 3000
11
CMD ["npm", "start"]
0 commit comments