Skip to content

Commit 0acf9f1

Browse files
committed
feat: switch to Debian instead of Alpine
1 parent 1f1346f commit 0acf9f1

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#syntax=docker/dockerfile:1.4
22

33
# Versions
4-
FROM dunglas/frankenphp:1-alpine AS frankenphp_upstream
4+
FROM dunglas/frankenphp:1-php8.3 AS frankenphp_upstream
55

66
# The different stages of this Dockerfile are meant to be built into separate images
77
# 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
1414
WORKDIR /app
1515

1616
# 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/*
2424

2525
RUN set -eux; \
2626
install-php-extensions \

frankenphp/conf.d/app.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
variables_order = EGPCS
21
expose_php = 0
32
date.timezone = UTC
43
apc.enable_cli = 1

0 commit comments

Comments
 (0)