elchananwolf11223 commited on
Commit
ff3bfca
·
verified ·
1 Parent(s): ef5ef43

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -2,5 +2,5 @@ FROM python:3.11-slim-bookworm
2
  RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
3
  COPY . /app
4
  WORKDIR /app
5
- RUN pip install -r requirements.txt
6
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
2
  RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
3
  COPY . /app
4
  WORKDIR /app
5
+ RUN pip install --no-cache-dir -r requirements.txt
6
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]