File tree 2 files changed +8
-9
lines changed 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1.4
2
2
3
3
# Versions
4
- FROM dunglas/frankenphp:1-alpine AS frankenphp_upstream
4
+ FROM dunglas/frankenphp:1-php8.3 AS frankenphp_upstream
5
5
6
6
# The different stages of this Dockerfile are meant to be built into separate images
7
7
# https://docs.docker.com/develop/develop-images/multistage-build/#stop-at-a-specific-build-stage
@@ -14,13 +14,13 @@ FROM frankenphp_upstream AS frankenphp_base
14
14
WORKDIR /app
15
15
16
16
# persistent / runtime deps
17
- # hadolint ignore=DL3018
18
- RUN apk add -- no-cache \
19
- acl \
20
- file \
21
- gettext \
22
- git \
23
- ;
17
+ # hadolint ignore=DL3008
18
+ RUN apt-get update && apt-get install -y -- no-install-recommends \
19
+ acl \
20
+ file \
21
+ gettext \
22
+ git \
23
+ && rm -rf /var/lib/apt/lists/*
24
24
25
25
RUN set -eux; \
26
26
install-php-extensions \
Original file line number Diff line number Diff line change 1
- variables_order = EGPCS
2
1
expose_php = 0
3
2
date.timezone = UTC
4
3
apc.enable_cli = 1
You can’t perform that action at this time.
0 commit comments