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