-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
executable file
·72 lines (63 loc) · 1.77 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Unlike most docker images, where we want to optimize layers to be small and few
# we'd rather leverage layer caching for faster builds when things change, since
# we never ship this image, rather we extract the compiled binaries as part of
# our build process.
FROM amazonlinux:2018.03
WORKDIR /tmp
RUN yum --releasever=2018.03 install \
autoconf \
libtool \
gcc \
gcc-c++ \
bison \
libxml2-devel \
openssl-devel \
libpng-devel \
curl-devel \
libjpeg-devel -y
###############################################################################
# OPENSSL Build
# https://github.com/openssl/openssl/releases
RUN \
curl -sL http://www.openssl.org/source/openssl-1.0.1k.tar.gz | tar -xvz \
&& cd openssl-1.0.1k \
&& ./config \
&& make \
&& make install
###############################################################################
# PHP Build
# https://github.com/php/php-src/releases
ENV PHP_VERSION 7.3.5
RUN \
curl -sL http://php.net/distributions/php-${PHP_VERSION}.tar.gz | tar -xvz
RUN mkdir -p /tmp/php-7-bin \
&& cd php-${PHP_VERSION} \
&& ./configure --prefix /tmp/php-7-bin \
--with-gd \
--with-zlib \
--with-curl \
--with-curl \
--without-pear \
--without-libzip \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-openssl=/usr/local/ssl \
--with-config-file-path=/var/task/ \
--enable-mbstring \
--enable-static=yes \
--enable-shared=no \
--enable-hash \
--enable-json \
--enable-libxml \
--enable-mbstring \
--enable-phar \
--enable-soap \
--enable-xml \
--enable-ctype \
--enable-cgi \
--enable-opcache \
--enable-bcmath \
--enable-exif \
--enable-zip \
--enable-opcache-file \
&& make install