th0mascat commited on
Commit
4a439f1
·
1 Parent(s): ab10e4e
Files changed (2) hide show
  1. Dockerfile +0 -12
  2. dockerfile +0 -8
Dockerfile DELETED
@@ -1,12 +0,0 @@
1
-
2
- FROM python:3.9
3
-
4
- WORKDIR /
5
-
6
- COPY . .
7
-
8
- RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
9
-
10
- RUN pip install -r requirements.txt
11
-
12
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
 
 
 
 
 
 
 
 
dockerfile DELETED
@@ -1,8 +0,0 @@
1
-
2
- FROM python:3.9
3
-
4
- WORKDIR /
5
-
6
- RUN pip install --no-cache-dir --upgrade -r /requirements.txt
7
-
8
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]