From baa8ff02e9a629fc3743e3da67928600939340e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Sep 2023 10:15:41 +0000 Subject: [PATCH] Bump python from 3.10.12-slim to 3.11.5-slim Bumps python from 3.10.12-slim to 3.11.5-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..6e801f9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10.12-slim as BUILD +FROM python:3.11.5-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.11.5-slim RUN apt-get install -y bash