Skip to content

Commit

Permalink
Merge pull request #3 from FaKod/patch-1
Browse files Browse the repository at this point in the history
added phantomjs 2.1.1
  • Loading branch information
nullpos committed Feb 10, 2017
2 parents e19ffc7 + d471131 commit 0d012c1
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions 10.3/Dockerfile
Expand Up @@ -14,10 +14,20 @@ RUN yum -y update && yum -y install \
&& yum clean all

# fess
RUN curl -OL ${FESS_REMOTE_URI}
RUN unzip /tmp/${FESS_FILENAME} -d /opt
RUN rm /tmp/${FESS_FILENAME}
RUN ln -s /opt/fess-${FESS_VERSION} /opt/fess
RUN curl -OL ${FESS_REMOTE_URI} \
&& unzip /tmp/${FESS_FILENAME} -d /opt \
&& rm /tmp/${FESS_FILENAME} \
&& ln -s /opt/fess-${FESS_VERSION} /opt/fess

#phantomjs
RUN yum -y update \
&& yum -y install bzip2 fontconfig freetype freetype-devel fontconfig-devel libstdc++ \
&& yum clean all

RUN curl -OL https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 \
&& tar xvf phantomjs-2.1.1-linux-x86_64.tar.bz2 \
&& cp phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin \
&& rm -rf phantomjs-2.1.1-linux-x86_64

WORKDIR /opt/fess

Expand Down

0 comments on commit 0d012c1

Please sign in to comment.