File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ RUN set -eux; \
6
6
codename='jessie' ; \
7
7
{ \
8
8
echo "deb http://archive.debian.org/debian ${codename} main" ; \
9
+ echo "deb http://archive.debian.org/debian ${codename}-backports main" ; \
9
10
echo "deb http://archive.debian.org/debian-security ${codename}/updates main" ; \
10
11
} > /etc/apt/sources.list;
11
12
@@ -25,7 +26,7 @@ RUN set -eux; \
25
26
dpkg -i bison_2.7.1.dfsg-1_amd64.deb; \
26
27
rm *.deb; \
27
28
\
28
- curl -sSLf "https://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2; \
29
+ curl --insecure - sSLf "https://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2; \
29
30
echo 'c4e1cf6972b2a9c7f2777a18497d83bf713cdbecabb65d3ff62ba441aebb0091 php.tar.bz2' | sha256sum -cw --status; \
30
31
\
31
32
mkdir -p /usr/src/php; \
@@ -39,6 +40,8 @@ RUN set -eux; \
39
40
--with-pdo-mysql \
40
41
--with-zlib \
41
42
--enable-mbstring \
43
+ --with-openssl=/usr \
44
+ --with-libdir=lib/x86_64-linux-gnu \
42
45
; \
43
46
make -j"$(nproc)" ; \
44
47
make install; \
You can’t perform that action at this time.
0 commit comments