Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
FROM ollama/ollama:latest
|
| 2 |
|
| 3 |
-
RUN apt-get update && apt-get install -y python3 python3-pip && rm -rf /var/lib/apt/lists/*
|
| 4 |
|
| 5 |
-
RUN pip3 install --no-cache-dir gradio requests --break-system-packages
|
| 6 |
|
| 7 |
COPY app.py /app.py
|
| 8 |
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
| 1 |
FROM ollama/ollama:latest
|
| 2 |
|
| 3 |
+
RUN apt-get update && apt-get install -y python3 python3-pip ffmpeg && rm -rf /var/lib/apt/lists/*
|
| 4 |
|
| 5 |
+
RUN pip3 install --no-cache-dir gradio requests numpy --break-system-packages
|
| 6 |
|
| 7 |
COPY app.py /app.py
|
| 8 |
COPY entrypoint.sh /entrypoint.sh
|