update() alpine 3.12

pull/59/head
Magicalex 2020-05-31 03:33:53 +02:00
parent 6dd84e6b6d
commit cd55564193
No known key found for this signature in database
GPG Key ID: A89B48B1788C3CB5
1 changed files with 20 additions and 20 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.11 FROM alpine:3.12
LABEL description="Simple forum software for building great communities" \ LABEL description="Simple forum software for building great communities" \
maintainer="Hardware <hardware@mondedie.fr>, Magicalex <magicalex@mondedie.fr>" maintainer="Hardware <hardware@mondedie.fr>, Magicalex <magicalex@mondedie.fr>"
@ -21,36 +21,36 @@ ENV GID=991 \
FLARUM_PORT=8888 FLARUM_PORT=8888
RUN apk add --no-progress --no-cache \ RUN apk add --no-progress --no-cache \
nginx \
s6 \
su-exec \
curl \ curl \
git \ git \
libcap \ libcap \
nginx \
php7 \ php7 \
php7-fileinfo \ php7-ctype \
php7-phar \
php7-fpm \
php7-curl \ php7-curl \
php7-mbstring \ php7-dom \
php7-openssl \ php7-exif \
php7-fileinfo \
php7-fpm \
php7-gd \
php7-gmp \
php7-iconv \
php7-intl \
php7-json \ php7-json \
php7-mbstring \
php7-mysqlnd \
php7-opcache \
php7-openssl \
php7-pdo \ php7-pdo \
php7-pdo_mysql \ php7-pdo_mysql \
php7-mysqlnd \ php7-phar \
php7-zlib \
php7-gd \
php7-dom \
php7-ctype \
php7-session \ php7-session \
php7-opcache \
php7-xmlwriter \
php7-tokenizer \ php7-tokenizer \
php7-xmlwriter \
php7-zip \ php7-zip \
php7-intl \ php7-zlib \
php7-exif \ su-exec \
php7-iconv \ s6 \
php7-gmp \
&& cd /tmp \ && cd /tmp \
&& curl -s http://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \ && curl -s http://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& chmod +x /usr/local/bin/composer \ && chmod +x /usr/local/bin/composer \