|
|
|
@ -6,7 +6,7 @@ RUN apt-get update \ |
|
|
|
&& apt-get clean \ |
|
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
|
|
# Install official PhantomJS release |
|
|
|
# Install official PhantomJS release |
|
|
|
RUN set -x \ |
|
|
|
&& apt-get update \ |
|
|
|
&& apt-get install -y --no-install-recommends \ |
|
|
|
@ -22,4 +22,12 @@ RUN set -x \ |
|
|
|
&& apt-get clean all \ |
|
|
|
&& rm -rf /tmp/* /var/lib/apt/lists/* |
|
|
|
|
|
|
|
RUN phantomjs --version |
|
|
|
RUN phantomjs --version |
|
|
|
|
|
|
|
# Install Google Chrome |
|
|
|
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - |
|
|
|
|
|
|
|
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' |
|
|
|
|
|
|
|
RUN apt-get update |
|
|
|
&& apt-get install -y google-chrome-stable |