Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ RUN useradd -m -u 1000 user
|
|
5 |
WORKDIR /app
|
6 |
COPY --chown=user ./requirements.txt requirements.txt
|
7 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
8 |
-
RUN pip install gradio opencv-python pandas ultralytics
|
9 |
|
10 |
COPY --chown=user . /app
|
11 |
|
|
|
5 |
WORKDIR /app
|
6 |
COPY --chown=user ./requirements.txt requirements.txt
|
7 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
8 |
+
RUN pip install --no-cache-dir gradio opencv-python pandas ultralytics onnx onnxruntime
|
9 |
|
10 |
COPY --chown=user . /app
|
11 |
|