diff --git a/docker/api/Dockerfile b/docker/api/Dockerfile index 9bfa9b8..26c3144 100644 --- a/docker/api/Dockerfile +++ b/docker/api/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.12-slim WORKDIR /app -RUN apt-get update && apt-get install -y --no-install-recommends gcc && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y --no-install-recommends gcc udev && rm -rf /var/lib/apt/lists/* COPY docker/api/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt