Skip to content

Commit

Permalink
Basic Docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
bago committed Dec 20, 2016
1 parent 6e54a94 commit ade9ea6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ RUN yum -y install bzip2 tar git nodejs npm ImageMagick; yum clean all

RUN npm install grunt-cli -g

RUN mkdir -p /usr/src/mosaico
COPY . /usr/src/mosaico
WORKDIR /usr/src/mosaico
RUN npm install

EXPOSE 9006

CMD ["grunt"]
CMD ["grunt", "test", "default"]

0 comments on commit ade9ea6

Please sign in to comment.