Shiva-teja-chary commited on
Commit
0dbdb0f
·
verified ·
1 Parent(s): 3b306b2

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -24
Dockerfile DELETED
@@ -1,24 +0,0 @@
1
- # Dockerfile for Hugging Face Space (Docker)
2
- FROM python:3.11-slim
3
-
4
- WORKDIR /app
5
-
6
- # system deps for paddle + opencv
7
- RUN apt-get update && apt-get install -y \
8
- build-essential \
9
- libglib2.0-0 \
10
- libsm6 \
11
- libxrender1 \
12
- libxext6 \
13
- git \
14
- ffmpeg \
15
- && rm -rf /var/lib/apt/lists/*
16
-
17
- COPY requirements.txt /app/requirements.txt
18
- RUN pip install --no-cache-dir -r /app/requirements.txt
19
-
20
- COPY app /app/app
21
- ENV PYTHONPATH=/app
22
- EXPOSE 8000
23
-
24
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]