Skip to content

Commit

Permalink
Add make, gcc, g++, python
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdor committed Oct 22, 2017
1 parent f127781 commit 04498ed
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions grnet/Gulp-Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MAINTAINER alexdor
################## BEGIN INSTALLATION ######################

# Update repositories and install git
RUN apk update && apk add git
RUN apk update && apk add --no-cache make gcc g++ python git

# Clone repo
RUN git clone https://github.com/lambdaspace/new_website.git
Expand All @@ -22,9 +22,10 @@ RUN yarn global add bower gulp
WORKDIR new_website
# ADD ./node_modules node_modules/
# ADD ./src/components src/components/
RUN yarn install
RUN bower install --allow-root
RUN yarn install && \
bower install --allow-root && \


################## INSTALLATION END ######################

CMD /usr/local/bin/gulp --production /new_website/
CMD /usr/local/bin/gulp --production /new_website/ && /bin/bash

0 comments on commit 04498ed

Please sign in to comment.