Skip to content

Commit 64dc9b0

Browse files
authored
Merge pull request #43 from spaceonfire/update-software-versions
update base image versions and xdebug default version
2 parents 28d9661 + 1f8251c commit 64dc9b0

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ stages:
44

55
variables:
66
PHP_7_2: 7.2.33
7-
PHP_7_3: 7.3.21
8-
PHP_7_4: 7.4.9
7+
PHP_7_3: 7.3.22
8+
PHP_7_4: 7.4.10
99
PHP_8_0: 8.0-rc
1010

1111
.build:

Dockerfile

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PHP_BASEIMAGE_VERSION=7.4.9
1+
ARG PHP_BASEIMAGE_VERSION=7.4.10
22
FROM php:${PHP_BASEIMAGE_VERSION}-fpm-alpine
33

44
LABEL maintainer="Constantine Karnaukhov <[email protected]>"
@@ -10,15 +10,11 @@ ENV \
1010
# Fix for iconv: https://github.com/docker-library/php/issues/240
1111
LD_PRELOAD="/usr/lib/preloadable_libiconv.so php"
1212

13-
ARG XDEBUG_VERSION=2.9.6
13+
ARG XDEBUG_VERSION=2.9.8
1414
ARG PHP_EXTENSIONS="dom exif gd iconv intl json mysqli opcache pdo_mysql pdo_sqlite soap xsl zip"
1515

1616
# Install dependencies
17-
RUN { \
18-
echo "@edge http://dl-cdn.alpinelinux.org/alpine/edge/main"; \
19-
echo "@community http://dl-cdn.alpinelinux.org/alpine/edge/community"; \
20-
} >> /etc/apk/repositories && \
21-
apk add --update \
17+
RUN apk add --update \
2218
acl \
2319
apk-cron \
2420
augeas-dev \
@@ -46,14 +42,14 @@ RUN { \
4642
make \
4743
musl-dev \
4844
mysql-client \
49-
nginx@edge \
45+
nginx \
5046
openssh-client \
5147
ssmtp \
5248
sqlite-dev \
5349
supervisor \
5450
su-exec \
5551
wget \
56-
gnu-libiconv@community \
52+
gnu-libiconv \
5753
&& \
5854
docker-php-ext-configure gd \
5955
--with-gd \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ Docker образ, основанный на Alpine Linux, с установле
2121

2222
| Docker Tag | PHP Version |
2323
| ------------------------------------- | ----------- |
24-
| `latest` / `latest-7.4` / `2.4.1-7.4` | 7.4.9 |
25-
| `latest-7.3` / `2.4.1-7.3` | 7.3.21 |
26-
| `latest-7.2` / `2.4.1-7.2` | 7.2.33 |
24+
| `latest` / `latest-7.4` / `2.4.2-7.4` | 7.4.10 |
25+
| `latest-7.3` / `2.4.2-7.3` | 7.3.22 |
26+
| `latest-7.2` / `2.4.2-7.2` | 7.2.33 |
2727
| `next-8.0-rc` | 8.0.0-rc |
2828

2929
## Быстрый старт

0 commit comments

Comments
 (0)