Skip to content

Commit

Permalink
Modified Dockerfile
Browse files Browse the repository at this point in the history
Modified Dockerfile to follow best practices highlighted by Docker best
practices guide.
  • Loading branch information
Emmanuel Narh committed Jun 16, 2015
1 parent 8bd0a04 commit f3ff3c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ MAINTAINER Emmanuel (Manny) Narh <[email protected]>

RUN cd /tmp \
&& apt-get update \
&& apt-get install xfonts-base -y \
&& apt-get install xfonts-75dpi -y \
&& apt-get install -y \
xfonts-base \
xfonts-75dpi \
xserver-common \
&& curl -SLO "http://downloads.sourceforge.net/project/wkhtmltopdf/0.12.2.1/wkhtmltox-0.12.2.1_linux-jessie-amd64.deb" \
&& dpkg -i wkhtmltox-0.12.2.1_linux-jessie-amd64.deb \
&& apt-get install -f -y \
&& apt-get install xserver-common -y
&& dpkg -i wkhtmltox-0.12.2.1_linux-jessie-amd64.deb

CMD ["node"]

0 comments on commit f3ff3c4

Please sign in to comment.