We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02cbd8a commit 792b698Copy full SHA for 792b698
src/Dockerfile
@@ -1,15 +1,16 @@
1
# syntax=docker/dockerfile:1
2
-ARG VERSION="bookworm-backports"
+ARG VERSION="bullseye-backports"
3
FROM debian:${VERSION}
4
-ARG VERSION
5
+
6
+ENV VERSION="bullseye"
7
ENV PACKAGES="binfmt-support build-essential lsof sudo util-linux fdisk"
-ENV BPO="qemu-system qemu-user-static"
8
+ENV BPO="qemu qemu-user-static"
9
10
RUN set -ex \
11
&& apt-get update \
12
&& apt-get install --no-install-recommends --yes ${PACKAGES} \
- && apt-get install --no-install-recommends --yes -t ${VERSION} ${BPO} \
13
+ && apt-get install --no-install-recommends --yes -t ${VERSION}-backports ${BPO} \
14
&& apt autoremove \
15
&& rm -rf /var/lib/apt/lists/*
16
0 commit comments