NMHung commited on
Commit
ee7d636
1 Parent(s): a11a359

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -21
Dockerfile DELETED
@@ -1,21 +0,0 @@
1
- FROM python:3.9
2
-
3
-
4
-
5
- USER root
6
-
7
- WORKDIR /code
8
-
9
- COPY ./requirements.txt /code/requirements.txt
10
-
11
- RUN apt-get update
12
- RUN apt-get install ffmpeg libsm6 libxext6 -y
13
-
14
- RUN pip install --upgrade pip
15
-
16
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
17
-
18
- COPY . .
19
-
20
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
21
-