From 7c9652122b51183624301b8b570b9f4344906ee0 Mon Sep 17 00:00:00 2001 From: Morgan McMillian Date: Mon, 17 Jul 2023 21:18:41 -0700 Subject: [PATCH] update base container image to bookworm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6fa41c2..f7d29da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim-bullseye AS builder +FROM python:3.11-slim-bookworm AS builder RUN pip install --no-cache-dir --upgrade pip setuptools wheel @@ -10,7 +10,7 @@ RUN pip wheel . --wheel-dir /wheels --find-links /wheels -FROM python:3.10-slim-bullseye AS run +FROM python:3.11-slim-bookworm AS run COPY --from=builder /wheels /wheels