From fb1ec782e2f1e7c39bb29ec44f1a4ec1a8a9a0fb Mon Sep 17 00:00:00 2001 From: TheByronHimes Date: Mon, 15 Jul 2024 14:41:48 +0000 Subject: [PATCH] Update deployment dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a674fb6..7503ca6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ # limitations under the License. ## creating building container -FROM python:3.10.9-slim-bullseye AS builder +FROM python:3.12-slim-bookworm AS builder # update and install dependencies RUN apt update RUN apt upgrade -y @@ -26,7 +26,7 @@ WORKDIR /service RUN python -m build # creating running container -FROM python:3.10.9-slim-bullseye +FROM python:3.12-slim-bookworm # update and install dependencies RUN apt update RUN apt upgrade -y