Skip to content

Commit 792b698

Browse files
committed
Revert "chore: update docker base image from bullseye to bookworm (OctoPrint#34)"
This reverts commit 6ac46d3.
1 parent 02cbd8a commit 792b698

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# syntax=docker/dockerfile:1
2-
ARG VERSION="bookworm-backports"
2+
ARG VERSION="bullseye-backports"
33
FROM debian:${VERSION}
4-
ARG VERSION
54

5+
6+
ENV VERSION="bullseye"
67
ENV PACKAGES="binfmt-support build-essential lsof sudo util-linux fdisk"
7-
ENV BPO="qemu-system qemu-user-static"
8+
ENV BPO="qemu qemu-user-static"
89

910
RUN set -ex \
1011
&& apt-get update \
1112
&& apt-get install --no-install-recommends --yes ${PACKAGES} \
12-
&& apt-get install --no-install-recommends --yes -t ${VERSION} ${BPO} \
13+
&& apt-get install --no-install-recommends --yes -t ${VERSION}-backports ${BPO} \
1314
&& apt autoremove \
1415
&& rm -rf /var/lib/apt/lists/*
1516

0 commit comments

Comments
 (0)