priya2k commited on
Commit
d4dcaba
·
verified ·
1 Parent(s): 25abaf7

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -21
Dockerfile DELETED
@@ -1,21 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- WORKDIR /app
4
-
5
- # Copy files
6
- COPY . .
7
-
8
- # Install dependencies
9
- RUN pip install --no-cache-dir -r requirements.txt
10
-
11
- # Set Hugging Face cache location
12
- ENV HF_HOME=/app/.cache/huggingface
13
- ENV TRANSFORMERS_CACHE=$HF_HOME
14
- ENV HF_DATASETS_CACHE=$HF_HOME
15
- ENV HF_METRICS_CACHE=$HF_HOME
16
- ENV HUGGINGFACE_HUB_CACHE=$HF_HOME
17
-
18
- EXPOSE 7860
19
-
20
- # Run the app
21
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]