aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/php/Dockerfile
diff options
context:
space:
mode:
authorGravatar Nikita Popov <nikita.ppv@gmail.com>2019-09-29 15:25:34 +0200
committerGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2019-09-29 06:25:34 -0700
commit6c140759865d6c09581c8dac1e267516d693c00d (patch)
tree5608ab858a3c7534d8d04c80a46847db436ce143 /projects/php/Dockerfile
parent099b86d384025b21f33693d8851d6cfa7677d484 (diff)
[php] Enable i386 architecture (#2899)
Diffstat (limited to 'projects/php/Dockerfile')
-rw-r--r--projects/php/Dockerfile8
1 files changed, 3 insertions, 5 deletions
diff --git a/projects/php/Dockerfile b/projects/php/Dockerfile
index 24c1b314..2a391d56 100644
--- a/projects/php/Dockerfile
+++ b/projects/php/Dockerfile
@@ -16,11 +16,9 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER stas@php.net
-RUN apt-get update && apt-get install -y make autoconf automake libtool bison re2c make ca-certificates curl \
- xz-utils dpkg-dev file libc-dev pkg-config libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev \
- zlib1g-dev chrpath
-ADD cosmic.list /etc/apt/sources.list.d/cosmic.list
-RUN apt-get update && apt-get install -y libonig5 libonig-dev
+RUN apt-get update && \
+ apt-get install -y autoconf automake libtool bison re2c pkg-config
RUN git clone --depth 1 --branch master https://github.com/php/php-src.git php-src
+RUN git clone https://github.com/kkos/oniguruma.git php-src/oniguruma
WORKDIR php-src
COPY build.sh *.options $SRC/