-
Notifications
You must be signed in to change notification settings - Fork 715
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1190 from MindGeekOSS/master
Fix docker build
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
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 echo deb http://www.deb-multimedia.org jessie main non-free >> /etc/apt/sources.list && \ | ||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --allow-unauthenticated --allow-downgrades --allow-change-held-packages \ | ||
# deb-multimedia-keyring \ | ||
imagemagick \ | ||
libjpeg-progs \ | ||
exiftool \ | ||
unzip \ | ||
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\ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --allow-downgrades --allow-change-held-packages \ | ||
ffmpeg && \ | ||
apt-get clean && \ | ||
apt-get autoclean | ||
|