From edb738a126661c9aa5cc48c83bd6833cad25713c Mon Sep 17 00:00:00 2001 From: Justin Van Patten Date: Wed, 28 Jun 2023 14:54:14 -0700 Subject: [PATCH] Use python:3.9-slim-bullseye Debian "bookworm" was released on June 10, and there are some issues installing the Azure CLI and Java on "bookworm". This commit changes us to go back to using Debian "bullseye" for now. --- docker/pulumi/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/pulumi/Dockerfile b/docker/pulumi/Dockerfile index 40104210..61d5f217 100644 --- a/docker/pulumi/Dockerfile +++ b/docker/pulumi/Dockerfile @@ -1,4 +1,7 @@ -FROM python:3.9-slim AS base +# TODO[pulumi/pulumi-docker-containers#147]: Move back to using `python:3.9-slim` +# as the base image when upstream issues with Debian "bookworm" are resolved. +# For now, we continue using Debian "bullseye" as the base image. +FROM python:3.9-slim-bullseye AS base LABEL "repository"="https://github.com/pulumi/pulumi" LABEL "homepage"="https://pulumi.com"