maylinejix commited on
Commit
ffb54fb
·
verified ·
1 Parent(s): 1ad5db5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -4
Dockerfile CHANGED
@@ -1,12 +1,14 @@
1
- FROM python:3.11-slim
2
 
3
- RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
 
 
4
 
5
  COPY requirements.txt .
6
- RUN pip install -r requirements.txt
7
 
8
  COPY app.py .
9
 
10
  EXPOSE 7860
11
 
12
- CMD ["python", "app.py"]
 
1
+ FROM python:3.10-slim
2
 
3
+ RUN apt-get update && apt-get install -y ffmpeg git && rm -rf /var/lib/apt/lists/*
4
+
5
+ WORKDIR /app
6
 
7
  COPY requirements.txt .
8
+ RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY app.py .
11
 
12
  EXPOSE 7860
13
 
14
+ CMD ["python", "app.py"]