Optimize Dockerfile by removing unnecessary system package installations

This commit is contained in:
vvzvlad
2025-02-01 23:31:41 +03:00
parent 1e027d1fd1
commit db724aca68
-1
View File
@@ -2,7 +2,6 @@ FROM python:3.11-slim
WORKDIR /app
RUN mkdir -p data
RUN apt-get update && apt-get install -y curl libgl1 && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY *.py .