AIencoder commited on
Commit
d626b78
·
verified ·
1 Parent(s): 93cd0af

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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