From f67cc5755ad524d66be41b41e1db8bc59a01f980 Mon Sep 17 00:00:00 2001 From: Tim de Pater Date: Mon, 18 Jan 2021 17:23:07 +0100 Subject: [PATCH] Upgraded Alpine Linux to 3.13 --- Dockerfile | 4 ++-- README.md | 8 ++++---- run_tests.sh | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7f2f6d..7ed796f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM alpine:3.12 +FROM alpine:3.13 LABEL Maintainer="Tim de Pater " \ - Description="Lightweight container with Nginx 1.18 & PHP-FPM 7.3 based on Alpine Linux." + Description="Lightweight container with Nginx 1.18 & PHP 7.4 based on Alpine Linux." # Install packages and remove default server definition RUN apk --no-cache add php7 php7-fpm php7-opcache php7-mysqli php7-json php7-openssl php7-curl \ diff --git a/README.md b/README.md index e690997..602233e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# Docker PHP-FPM 7.3 & Nginx 1.18 on Alpine Linux -Example PHP-FPM 7.3 & Nginx 1.18 setup for Docker, build on [Alpine Linux](https://www.alpinelinux.org/). +# Docker PHP-FPM 7.4 & Nginx 1.18 on Alpine Linux +Example PHP-FPM 7.4 & Nginx 1.18 setup for Docker, build on [Alpine Linux](https://www.alpinelinux.org/). The image is only +/- 35MB large. Repository: https://github.com/TrafeX/docker-php-nginx @@ -7,7 +7,7 @@ Repository: https://github.com/TrafeX/docker-php-nginx * Built on the lightweight and secure Alpine Linux distribution * Very small Docker image size (+/-35MB) -* Uses PHP 7.3 for better performance, lower CPU usage & memory footprint +* Uses PHP 7.4 for better performance, lower CPU usage & memory footprint * Optimized for 100 concurrent users * Optimized to only use resources when there's traffic (by using PHP-FPM's on-demand PM) * The servers Nginx, PHP-FPM and supervisord run under a non-privileged user (nobody) to make it more secure @@ -18,7 +18,7 @@ Repository: https://github.com/TrafeX/docker-php-nginx [![Docker Pulls](https://img.shields.io/docker/pulls/trafex/alpine-nginx-php7.svg)](https://hub.docker.com/r/trafex/alpine-nginx-php7/) [![Docker image layers](https://images.microbadger.com/badges/image/trafex/alpine-nginx-php7.svg)](https://microbadger.com/images/trafex/alpine-nginx-php7) ![nginx 1.18.0](https://img.shields.io/badge/nginx-1.18-brightgreen.svg) -![php 7.3](https://img.shields.io/badge/php-7.3-brightgreen.svg) +![php 7.4](https://img.shields.io/badge/php-7.4-brightgreen.svg) ![License MIT](https://img.shields.io/badge/license-MIT-blue.svg) ### Breaking changes (26/01/2019) diff --git a/run_tests.sh b/run_tests.sh index 8ef6032..7132ac2 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -1,3 +1,3 @@ #!/usr/bin/env sh apk --no-cache add curl -curl --silent --fail http://app:8080 | grep 'PHP 7.3' +curl --silent --fail http://app:8080 | grep 'PHP 7.4'