Skip to content

Commit e7d2078

Browse files
authored
fix: rollback from bookworm-backports to bookworm to fix qemu issues (#36)
Signed-off-by: Stefan Dej <[email protected]>
1 parent 02cbd8a commit e7d2078

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Dockerfile

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

6-
ENV PACKAGES="binfmt-support build-essential lsof sudo util-linux fdisk"
7-
ENV BPO="qemu-system qemu-user-static"
6+
ENV PACKAGES="qemu-system qemu-user-static binfmt-support build-essential lsof sudo util-linux fdisk"
87

98
RUN set -ex \
109
&& apt-get update \
1110
&& apt-get install --no-install-recommends --yes ${PACKAGES} \
12-
&& apt-get install --no-install-recommends --yes -t ${VERSION} ${BPO} \
1311
&& apt autoremove \
1412
&& rm -rf /var/lib/apt/lists/*
1513

0 commit comments

Comments
 (0)