Skip to content

Commit

Permalink
fixed RUN commands
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed Nov 1, 2014
1 parent 0701af3 commit fae0aba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@ FROM centos:centos6
MAINTAINER Bjoern Kimminich

RUN yum groupinstall -y "Development Tools"
RUN yum groupinstall -y "Development Libraries"
RUN yum groupinstall -y "Additional Development"
RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
RUN yum install -y glibc
RUN yum install -y npm

COPY . /juice-shop
RUN cd /juice-shop; npm install
RUN cd /juice-shop; bower_install.js
RUN cd /juice-shop; grunt_minify.js
RUN cd /juice-shop; npm install; bower_install.js; grunt_minify.js

WORKDIR /juice-shop

Expand Down

0 comments on commit fae0aba

Please sign in to comment.