File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.8
1
+ FROM alpine:3.14
2
2
3
3
ARG PHP_VERSION=5.6
4
4
ARG ATATUS_VERSION=1.12.0
@@ -85,7 +85,12 @@ RUN apk add --no-cache \
85
85
fcgi \
86
86
nano
87
87
88
- RUN apk add --no-cache \
88
+ RUN apk add --repository http://dl-cdn.alpinelinux.org/alpine/v3.8/main \
89
+ libressl-dev=2.7.5-r0 \
90
+ readline=7.0.003-r0 \
91
+ icu-libs=60.2-r3
92
+
93
+ RUN apk add --repository http://dl-cdn.alpinelinux.org/alpine/v3.8/community --update-cache \
89
94
php5 \
90
95
php5-common \
91
96
php5-curl \
@@ -100,7 +105,6 @@ RUN apk add --no-cache \
100
105
php5-posix \
101
106
php5-soap \
102
107
php5-zip \
103
- php5-ldap \
104
108
php5-bcmath \
105
109
php5-calendar \
106
110
php5-gettext \
@@ -135,7 +139,7 @@ RUN mkdir /etc/php && \
135
139
ln -snf /etc/php5 /etc/php/current
136
140
137
141
# Imagick
138
- RUN apk add --no -cache autoconf php5-dev gcc make g++ zlib-dev wget imagemagick-dev && \
142
+ RUN apk add --update -cache --repository http://dl-cdn.alpinelinux.org/alpine/v3.8/community autoconf php5-dev gcc make g++ zlib-dev wget imagemagick-dev && \
139
143
mkdir /imagick && cd /imagick && \
140
144
wget http://pecl.php.net/get/imagick-3.4.4.tgz && \
141
145
tar xzf imagick-3.4.4.tgz && cd imagick-3.4.4 && \
@@ -147,7 +151,7 @@ RUN apk add --no-cache autoconf php5-dev gcc make g++ zlib-dev wget imagemagick-
147
151
RUN rm -rf /imagick
148
152
149
153
# Imagick support file types
150
- RUN apk add --no-cache imagemagick
154
+ RUN apk add --repository http://dl-cdn.alpinelinux.org/alpine/v3.8/main -- no-cache imagemagick
151
155
152
156
# Add php5-redis
153
157
RUN apk --no-cache add ca-certificates wget && \
You can’t perform that action at this time.
0 commit comments