From 15fea78505df36e6cb5a9f91045c4b45bf81af49 Mon Sep 17 00:00:00 2001 From: nessi Date: Sat, 14 Feb 2026 16:52:10 +0100 Subject: [PATCH] Update Python base image to Alpine version for backend This change switches the base image from "slim" to "alpine" to reduce the overall image size and improve security. The updated image is more lightweight and better suited for environments where optimization is critical. --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 8104270..2d9b095 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -ARG PYTHON_BASE_IMAGE=python:3.13-slim +ARG PYTHON_BASE_IMAGE=python:3.13-alpine FROM ${PYTHON_BASE_IMAGE} AS base ENV PYTHONDONTWRITEBYTECODE=1