mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-16 11:37:32 +02:00
17 lines
457 B
Docker
17 lines
457 B
Docker
|
#
|
||
|
# Dockerfile for building PhantomJS
|
||
|
#
|
||
|
|
||
|
FROM ubuntu:14.04
|
||
|
MAINTAINER kev <noreply@datageek.info>
|
||
|
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install git build-essential g++ flex bison gperf ruby perl \
|
||
|
libsqlite3-dev libfontconfig1-dev libicu-dev libfreetype6 libssl-dev \
|
||
|
libpng-dev libjpeg-dev python ttf-mscorefonts-installer
|
||
|
|
||
|
RUN git clone git://github.com/ariya/phantomjs.git \
|
||
|
&& cd phantomjs \
|
||
|
&& git checkout 2.0 \
|
||
|
&& ./build.sh
|