amjadct commited on
Commit
a15e54e
·
verified ·
1 Parent(s): f5b9bc7
Files changed (1) hide show
  1. Dockerfile +0 -12
Dockerfile DELETED
@@ -1,12 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- WORKDIR /app
4
-
5
- RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
6
-
7
- COPY requirements.txt .
8
- RUN pip install -r requirements.txt
9
-
10
- COPY . .
11
-
12
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]