From ae8090ef4aa2a2d7f6124cc4cf507d283fe34c6e Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 14 Oct 2021 16:22:02 -0700 Subject: [PATCH] Use bullseye instead of buster It occurred to me after we landed the switch to buster that the old testing would've been closer to bullseye. I suspect that now that bullseye has released testing has moved ahead of that and that is what broke things. Anyway lets use bullseye instead as it is newer and more up to date. Change-Id: I2b405c4e3cd6c7d06d79875f540262ebba788336 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3e7a439..f2ae83f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -FROM debian:buster-slim as builder +FROM debian:bullseye-slim as builder RUN mkdir -p /output/bindep RUN apt-get update && apt-get install -y python3-pip git && pip3 install bindep @@ -25,7 +25,7 @@ RUN cd /src \ && make \ && make install -FROM debian:buster-slim +FROM debian:bullseye-slim COPY --from=builder /output/bindep/run.txt /run.txt RUN apt-get update \