Skip to content

Commit 71ac8bb

Browse files
author
FlyersWeb
committed
Fix gulp install - #23
1 parent f189afe commit 71ac8bb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

front-end/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ FROM node:5
33
ADD . /var/www
44
WORKDIR /var/www
55

6-
RUN npm install
7-
RUN npm install -g gulp
6+
RUN npm install -g gulp-cli \
7+
&& rm -rf node_modules && rm -rf dist \
8+
&& npm install
89

910
EXPOSE 3000
1011
CMD ["npm", "start"]

0 commit comments

Comments
 (0)