1 parent 30141bb commit f185312Copy full SHA for f185312
2 files changed
.docker/entrypoint.sh
@@ -2,7 +2,7 @@
2
set -e
3
4
# Force php to the background so nginx can be in foreground
5
-php-fpm8.2 -D
+php-fpm8.4 -D
6
7
# Force nginx into the foreground
8
nginx -g 'daemon off;'
Dockerfile
@@ -1,5 +1,5 @@
1
#| Builder Container
-FROM debian:bookworm-slim AS builder
+FROM debian:trixie-slim AS builder
# Copy source files and build script
COPY /src /src
COPY --chmod=0755 build.sh /build.sh
@@ -10,7 +10,7 @@ RUN set -x \
10
&& /build.sh
11
12
#| Main Container
13
-FROM debian:bookworm-slim
+FROM debian:trixie-slim
14
RUN set -x \
15
# create nginx user/group first, to be consistent throughout docker variants
16
&& groupadd --system --gid 101 nginx \
0 commit comments