-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] |