From 817c99a1f4d6eb3155af7c81e2e4471676413e29 Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Tue, 11 Nov 2025 11:41:20 +0100 Subject: [PATCH] removed stuff --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e770b54..10889b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,12 +23,8 @@ FROM python:3.11-slim WORKDIR /app -# Install only runtime dependencies (not build tools!) -RUN apt-get update && apt-get install -y --no-install-recommends \ - libssl3 \ - && rm -rf /var/lib/apt/lists/* - # Copy installed Python packages from builder +# (python:3.11-slim already has all needed runtime libraries) COPY --from=builder /install /usr/local # Copy application files