-
Notifications
You must be signed in to change notification settings - Fork 130
Open
Description
name: 🐛Docker runtime dependency missing
about: Create a report to help us improve FireForm.
title: "[BUG]: Docker container is missing system libraries required for OpenCV"
labels: bug
assignees: ''
⚡️ Describe the Bug
The Docker container is missing system libraries required for OpenCV and image-processing dependencies.
When running the app inside the container, it crashes because these libraries are not installed:
libgl1: OpenGL library required byopencv-pythonlibglib2.0-0: GLib library required by several Python image-processing packages
👣 Steps to Reproduce
f1. Build and start the containers
2. Run:
make exec
3. See error:
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
## 📉 Expected Behavior
The app should start successfully in Docker without crashing due to missing system libraries.
## 🖥️ Environment Information
OS: macOS
Docker/Compose Version: Docker 29.2.1
Ollama Model used: mistral:latest
## 📸 Screenshots/Logs
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
## 🕵️ Possible Fix
Add the missing system packages to apt-get install in the Dockerfile:
RUN apt-get update && apt-get install -y \
curl \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
Then we run:
make down
make build
make up
make execReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels