From 722b5a51643e37bf18771b9ef5c17f4f0df8cf0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:05:10 +0000 Subject: [PATCH] Bump python from 3.10.12-slim to 3.12.0-slim Bumps python from 3.10.12-slim to 3.12.0-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c0199cd5..c448f43b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.12-slim as BUILD +FROM python:3.12.0-slim as BUILD RUN apt-get update \ && apt-get install -y build-essential bash git gcc \ @@ -18,7 +18,7 @@ COPY setup.py /root/beacon/setup.py COPY beacon_api /root/beacon/beacon_api RUN pip install /root/beacon -FROM python:3.10.12-slim +FROM python:3.12.0-slim RUN apt-get install -y bash