From 5bdd64df49eb731f1b149ad52d47a03b9f6793ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 08:45:52 +0000 Subject: [PATCH] Bump python from 3.12-slim to 3.13-slim in /device Bumps python from 3.12-slim to 3.13-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- device/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/device/Dockerfile b/device/Dockerfile index a46fde1..cef1f02 100644 --- a/device/Dockerfile +++ b/device/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 AS build-stage +FROM python:3.13 AS build-stage # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive @@ -50,7 +50,7 @@ CMD ["pipenv", "run", "fd_device", "run"] # prod stage steps below. Similiar as the dev stage, but we copy the venv from # the build stage to the prod stage (no git in slim version of this docker base image) -FROM python:3.12-slim AS prod-stage +FROM python:3.13-slim AS prod-stage # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive ENV LANG C.UTF-8