switch base image from python:3.13-alpine to python:3.13-slim

This commit is contained in:
DIvan2000 2025-08-14 03:07:44 +04:00
parent db12ed066b
commit 23733502b3

View File

@ -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