Skip to content

Commit a4d786c

Browse files
committed
Use bullseye variant instead of bookwork
1 parent 15bf2e6 commit a4d786c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1.7-labs
2-
FROM php:8.4.6-fpm-bookworm
2+
FROM php:8.4.6-fpm-bullseye
33

44
ENV APP_ENV prod
55
ENV APP_DEBUG 0
@@ -36,7 +36,7 @@ RUN apt-get update \
3636
&& apt-get install -y \
3737
debsecan \
3838
&& apt-get install --no-install-recommends -y \
39-
$(debsecan --suite bookworm --format packages --only-fixed) \
39+
$(debsecan --suite bullseye --format packages --only-fixed) \
4040
&& rm -rf /var/lib/apt/lists/*
4141

4242
# Copy the Composer PHAR from the Composer image into the PHP image

Dockerfile_dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.4.6-fpm-bookworm
1+
FROM php:8.4.6-fpm-bullseye
22

33
# Let's use bash as a default shell with login each time
44
SHELL ["/bin/bash", "--login", "-c"]
@@ -74,7 +74,7 @@ RUN apt-get update \
7474
&& apt-get install -y \
7575
debsecan \
7676
&& apt-get install --no-install-recommends -y \
77-
$(debsecan --suite bookworm --format packages --only-fixed) \
77+
$(debsecan --suite bullseye --format packages --only-fixed) \
7878
&& rm -rf /var/lib/apt/lists/*
7979

8080
# Copy the Composer PHAR from the Composer image into the PHP image

0 commit comments

Comments
 (0)