File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 5
5
6
6
# Versions
7
7
# hadolint ignore=DL3007
8
- FROM dunglas/frankenphp:latest -php8.3-alpine AS frankenphp_upstream
8
+ FROM dunglas/frankenphp:1 -php8.3 AS frankenphp_upstream
9
9
FROM composer/composer:2-bin AS composer_upstream
10
10
11
11
@@ -21,25 +21,27 @@ WORKDIR /app
21
21
22
22
# persistent / runtime deps
23
23
# hadolint ignore=DL3018
24
- RUN apk add --no-cache \
24
+ RUN apt-get update; \
25
+ apt-get install --no-install-recommends -y \
25
26
acl \
26
27
file \
27
28
gettext \
28
29
git \
29
- ;
30
+ ; \
31
+ rm -rf /var/lib/apt/lists/*
30
32
31
33
RUN set -eux; \
32
- install-php-extensions \
34
+ install-php-extensions \
33
35
apcu \
34
36
intl \
35
37
opcache \
36
38
zip \
37
- ;
39
+ ;
38
40
39
41
# ##> recipes ###
40
42
# ##> doctrine/doctrine-bundle ###
41
43
RUN set -eux; \
42
- install-php-extensions pdo_pgsql
44
+ install-php-extensions pdo_pgsql
43
45
# ##< doctrine/doctrine-bundle ###
44
46
# ##< recipes ###
45
47
@@ -67,8 +69,8 @@ RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
67
69
68
70
RUN set -eux; \
69
71
install-php-extensions \
70
- xdebug \
71
- ;
72
+ xdebug \
73
+ ;
72
74
73
75
COPY --link frankenphp/conf.d/app.dev.ini $PHP_INI_DIR/conf.d/
74
76
You can’t perform that action at this time.
0 commit comments