From b1bcb6cdea86cba49ecffe2d0f3afdee5e87643f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Sch=C3=B6ppach?= <163308053+fabianschoeppach@users.noreply.github.com> Date: Thu, 6 Feb 2025 13:50:08 +0100 Subject: [PATCH] Update Dockerfile manually install libgl1, needed for the use of OpenCV in defect recognition --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0ed530c..4cee638 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,6 +99,9 @@ COPY scripts ./scripts FROM base_final AS final +# manually install libgl1, needed for the use of openCV in defect recognition +RUN apt-get update && apt-get install libgl1 + COPY --chown=nomad:1000 --from=builder /opt/venv /opt/venv COPY --chown=nomad:1000 scripts/run.sh . COPY --chown=nomad:1000 scripts/run-worker.sh .