[PHP-FPM] Add tzdata, update APCu and Redis extensions, update PHP to new minor
parent
9b3ff998e7
commit
a1a6574964
|
@ -11,7 +11,8 @@ RUN apk add --update --no-cache \
|
||||||
jq \
|
jq \
|
||||||
mariadb-client \
|
mariadb-client \
|
||||||
redis \
|
redis \
|
||||||
tini
|
tini \
|
||||||
|
tzdata
|
||||||
|
|
||||||
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
|
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
|
||||||
COPY expand6.sh /srv/expand6.sh
|
COPY expand6.sh /srv/expand6.sh
|
||||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ COPY dl_files.sh bootstrap.sh ./
|
||||||
ENV CLAMAV 0.100.0
|
ENV CLAMAV 0.100.0
|
||||||
|
|
||||||
RUN apk add --no-cache --virtual build-dependencies alpine-sdk ncurses-dev zlib-dev bzip2-dev pcre-dev linux-headers fts-dev libxml2-dev libressl-dev \
|
RUN apk add --no-cache --virtual build-dependencies alpine-sdk ncurses-dev zlib-dev bzip2-dev pcre-dev linux-headers fts-dev libxml2-dev libressl-dev \
|
||||||
&& apk add --no-cache curl bash tini libxml2 libbz2 pcre fts libressl \
|
&& apk add --no-cache curl bash tini libxml2 libbz2 pcre fts libressl tzdata \
|
||||||
&& wget -O - https://www.clamav.net/downloads/production/clamav-${CLAMAV}.tar.gz | tar xfvz - \
|
&& wget -O - https://www.clamav.net/downloads/production/clamav-${CLAMAV}.tar.gz | tar xfvz - \
|
||||||
&& cd clamav-${CLAMAV} \
|
&& cd clamav-${CLAMAV} \
|
||||||
&& LIBS=-lfts ./configure \
|
&& LIBS=-lfts ./configure \
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
FROM python:2-alpine
|
FROM python:2-alpine
|
||||||
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
||||||
|
|
||||||
RUN apk add -U --no-cache iptables ip6tables
|
RUN apk add -U --no-cache iptables ip6tables tzdata
|
||||||
RUN pip install docker==3.0.1 flask flask-restful
|
RUN pip install docker==3.0.1 flask flask-restful
|
||||||
|
|
||||||
COPY server.py /
|
COPY server.py /
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
FROM php:7.2-fpm-alpine3.7
|
FROM php:7.2-fpm-alpine3.7
|
||||||
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
|
||||||
|
|
||||||
ENV APCU_PECL 5.1.10
|
ENV APCU_PECL 5.1.11
|
||||||
ENV IMAGICK_PECL 3.4.3
|
ENV IMAGICK_PECL 3.4.3
|
||||||
ENV MAILPARSE_PECL 3.0.2
|
ENV MAILPARSE_PECL 3.0.2
|
||||||
ENV MEMCACHED_PECL 3.0.4
|
ENV MEMCACHED_PECL 3.0.4
|
||||||
ENV REDIS_PECL 3.1.6
|
ENV REDIS_PECL 4.0.2
|
||||||
|
|
||||||
RUN apk add -U --no-cache autoconf \
|
RUN apk add -U --no-cache autoconf \
|
||||||
bash \
|
bash \
|
||||||
|
@ -40,6 +40,7 @@ RUN apk add -U --no-cache autoconf \
|
||||||
redis \
|
redis \
|
||||||
samba-client \
|
samba-client \
|
||||||
zlib-dev \
|
zlib-dev \
|
||||||
|
tzdata \
|
||||||
&& pear install channel://pear.php.net/Net_IDNA2-0.2.0 \
|
&& pear install channel://pear.php.net/Net_IDNA2-0.2.0 \
|
||||||
channel://pear.php.net/Auth_SASL-1.1.0 \
|
channel://pear.php.net/Auth_SASL-1.1.0 \
|
||||||
Net_IMAP \
|
Net_IMAP \
|
||||||
|
|
|
@ -24,6 +24,7 @@ RUN apk add --update \
|
||||||
perl-mime-lite \
|
perl-mime-lite \
|
||||||
perl-term-readkey \
|
perl-term-readkey \
|
||||||
tini \
|
tini \
|
||||||
|
tzdata \
|
||||||
&& curl https://raw.githubusercontent.com/mludvig/smtp-cli/v3.9/smtp-cli -o /smtp-cli \
|
&& curl https://raw.githubusercontent.com/mludvig/smtp-cli/v3.9/smtp-cli -o /smtp-cli \
|
||||||
&& chmod +x smtp-cli
|
&& chmod +x smtp-cli
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue