Last active
September 26, 2018 19:23
-
-
Save jbuck/b8ac9544aca6a8582a9d5443fff40fbb to your computer and use it in GitHub Desktop.
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
diff --git a/Dockerfile b/Dockerfile | |
index 49dbc0e1..0a38cf1b 100644 | |
--- a/Dockerfile | |
+++ b/Dockerfile | |
@@ -1,10 +1,8 @@ | |
FROM php:5.6-apache | |
MAINTAINER iteratec WPT Team <[email protected]> | |
-RUN echo deb http://www.deb-multimedia.org jessie main non-free >> /etc/apt/sources.list && \ | |
- apt-get update && \ | |
- DEBIAN_FRONTEND=noninteractive apt-get install -q -y --force-yes \ | |
- deb-multimedia-keyring \ | |
+RUN apt-get update && \ | |
+ DEBIAN_FRONTEND=noninteractive apt-get install -q -y \ | |
imagemagick \ | |
libjpeg-progs \ | |
exiftool \ | |
@@ -12,15 +10,13 @@ RUN echo deb http://www.deb-multimedia.org jessie main non-free >> /etc/apt/sour | |
wget \ | |
libfreetype6-dev \ | |
libjpeg62-turbo-dev \ | |
- libpng12-dev \ | |
+ libpng-dev \ | |
libcurl4-openssl-dev \ | |
python \ | |
python-pillow \ | |
cron \ | |
beanstalkd \ | |
- supervisor && \ | |
- \ | |
- DEBIAN_FRONTEND=noninteractive apt-get install -q -y --force-yes\ | |
+ supervisor \ | |
ffmpeg && \ | |
apt-get clean && \ | |
apt-get autoclean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment