From 23733502b3a3ef14a38532c01d03214f75ad2740 Mon Sep 17 00:00:00 2001 From: DIvan2000 Date: Thu, 14 Aug 2025 03:07:44 +0400 Subject: [PATCH] switch base image from python:3.13-alpine to python:3.13-slim --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cc7f196..7b813ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13-alpine +FROM python:3.13-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt