Skip to content

Commit 0e96ea7

Browse files
authored
Merge pull request #1190 from MindGeekOSS/master
Fix docker build
2 parents 2e55540 + 6901486 commit 0e96ea7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
FROM php:5.6-apache
22
MAINTAINER iteratec WPT Team <[email protected]>
33

4-
RUN echo deb http://www.deb-multimedia.org jessie main non-free >> /etc/apt/sources.list && \
5-
apt-get update && \
6-
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --force-yes \
7-
deb-multimedia-keyring \
4+
# RUN echo deb http://www.deb-multimedia.org jessie main non-free >> /etc/apt/sources.list && \
5+
RUN apt-get update && \
6+
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --allow-unauthenticated --allow-downgrades --allow-change-held-packages \
7+
# deb-multimedia-keyring \
88
imagemagick \
99
libjpeg-progs \
1010
exiftool \
1111
unzip \
1212
wget \
1313
libfreetype6-dev \
1414
libjpeg62-turbo-dev \
15-
libpng12-dev \
15+
libpng-dev \
1616
libcurl4-openssl-dev \
1717
python \
1818
python-pillow \
1919
cron \
2020
beanstalkd \
2121
supervisor && \
2222
\
23-
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --force-yes\
23+
DEBIAN_FRONTEND=noninteractive apt-get install -q -y --allow-downgrades --allow-change-held-packages \
2424
ffmpeg && \
2525
apt-get clean && \
2626
apt-get autoclean

0 commit comments

Comments
 (0)