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 e7d2078Copy full SHA for e7d2078
src/Dockerfile
@@ -1,15 +1,13 @@
1
# syntax=docker/dockerfile:1
2
-ARG VERSION="bookworm-backports"
+ARG VERSION="bookworm"
3
FROM debian:${VERSION}
4
ARG VERSION
5
6
-ENV PACKAGES="binfmt-support build-essential lsof sudo util-linux fdisk"
7
-ENV BPO="qemu-system qemu-user-static"
+ENV PACKAGES="qemu-system qemu-user-static binfmt-support build-essential lsof sudo util-linux fdisk"
8
9
RUN set -ex \
10
&& apt-get update \
11
&& apt-get install --no-install-recommends --yes ${PACKAGES} \
12
- && apt-get install --no-install-recommends --yes -t ${VERSION} ${BPO} \
13
&& apt autoremove \
14
&& rm -rf /var/lib/apt/lists/*
15
0 commit comments