Skip to content

Commit

Permalink
Merge pull request #1190 from MindGeekOSS/master
Browse files Browse the repository at this point in the history
Fix docker build
  • Loading branch information
pmeenan committed Sep 26, 2018
2 parents 2e55540 + 6901486 commit 0e96ea7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
FROM php:5.6-apache
MAINTAINER iteratec WPT Team <wpt@iteratec.de>

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
Expand Down

0 comments on commit 0e96ea7

Please sign in to comment.