From cfef986f46ec4016eeaccfc629e8453392eccbdd Mon Sep 17 00:00:00 2001 From: AaronBenDaniel <144371000+AaronBenDaniel@users.noreply.github.com> Date: Thu, 5 Jun 2025 14:18:08 -0400 Subject: [PATCH] Update base image to python:3.13-slim --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5912f97..d89872d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ COPY src/frontend/. . RUN npm run build # Thanks https://stackoverflow.com/q/76988450 -FROM python:3.10-slim +FROM python:3.13-slim WORKDIR /app