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/