changed dockerfile

This commit is contained in:
2026-04-29 14:28:16 +02:00
parent 29622b7b2c
commit 6381f02235
+5
View File
@@ -3,6 +3,11 @@ FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install system dependencies (optional but common)
RUN apt-get update && apt-get install -y \
bash \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first (better Docker layer caching)
COPY . .