From e5591562322d62838f58844db941a0bb6abe0a3f Mon Sep 17 00:00:00 2001 From: Karl Date: Tue, 15 Jul 2025 13:45:20 +0100 Subject: [PATCH] fixed docker file --- dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index bf5d89e..7c52daa 100644 --- a/dockerfile +++ b/dockerfile @@ -11,6 +11,8 @@ FROM python:3.11-slim-bookworm AS final RUN apt-get update && apt-get install -y --no-install-recommends \ libgomp1 \ + libgl1 \ + libglib2.0-0 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* @@ -18,10 +20,10 @@ WORKDIR /app COPY --from=builder /install /usr/local COPY app.py . +COPY config.py . COPY gunicorn.conf.py . COPY run.sh . COPY VERSION . -COPY backend/ backend/ COPY lib/ lib/ COPY static/ static/ COPY templates/ templates/