Skip to content

Commit 9a07ec1

Browse files
committed
Updated to Alpine 3.13
1 parent 0b7a4f7 commit 9a07ec1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ARG ARCH=
2-
FROM ${ARCH}alpine:3.12
2+
FROM ${ARCH}alpine:3.13
33

44
LABEL Maintainer="Ernesto Serrano <[email protected]>" \
5-
Description="Lightweight container with Nginx 1.18 & PHP-FPM 7.3 based on Alpine Linux."
5+
Description="Lightweight container with Nginx & PHP-FPM based on Alpine Linux."
66

77
# Install packages
88
RUN apk --no-cache add \

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Tim de Pater
3+
Copyright (c) 2021 Ernesto Serrano
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
# Docker PHP-FPM 7.3 & Nginx 1.18 on Alpine Linux
3-
Example PHP-FPM 7.3 & Nginx 1.18 setup for Docker, build on [Alpine Linux](https://www.alpinelinux.org/).
2+
# Docker PHP-FPM 7.4 & Nginx 1.18 on Alpine Linux
3+
Example PHP-FPM 7.4 & Nginx 1.18 setup for Docker, build on [Alpine Linux](https://www.alpinelinux.org/).
44
The image is only +/- 25MB large.
55

66

@@ -9,7 +9,7 @@ Repository: https://github.com/erseco/alpine-php7-webserver
99

1010
* Built on the lightweight and secure Alpine Linux distribution
1111
* Very small Docker image size (+/-25MB)
12-
* Uses PHP 7.3 for better performance, lower cpu usage & memory footprint
12+
* Uses PHP 7.4 for better performance, lower cpu usage & memory footprint
1313
* Multi-arch support: 386, amd64, arm/v6, arm/v7, arm64, ppc64le, s390x
1414
* Optimized for 100 concurrent users
1515
* Optimized to only use resources when there's traffic (by using PHP-FPM's ondemand PM)
@@ -22,7 +22,7 @@ Repository: https://github.com/erseco/alpine-php7-webserver
2222
[![Docker Pulls](https://img.shields.io/docker/pulls/erseco/alpine-php7-webserver.svg)](https://hub.docker.com/r/erseco/alpine-php7-webserver/)
2323
[![Docker image layers](https://images.microbadger.com/badges/image/erseco/alpine-php7-webserver.svg)](https://microbadger.com/images/erseco/alpine-php7-webserver)
2424
![nginx 1.18.0](https://img.shields.io/badge/nginx-1.18-brightgreen.svg)
25-
![php 7.3](https://img.shields.io/badge/php-7.3-brightgreen.svg)
25+
![php 7.4](https://img.shields.io/badge/php-7.4-brightgreen.svg)
2626
![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)
2727

2828
## Usage

docker-compose.test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
app:
44
build: .
55
sut:
6-
image: alpine:3.12
6+
image: alpine:3.13
77
depends_on:
88
- app
99
command: /tmp/run_tests.sh

0 commit comments

Comments
 (0)