JohnDoee commited on
Commit
ada2814
·
1 Parent(s): 95fc527

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -11,8 +11,14 @@ COPY main.py .
11
  # Install dependencies
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
 
 
 
 
 
 
14
  # Expose port for FastAPI
15
  EXPOSE 7860
16
 
17
  # Run FastAPI server
18
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
11
  # Install dependencies
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
14
+ # Set cache directory
15
+ ENV TRANSFORMERS_CACHE="/app/cache"
16
+
17
+ # Pre-download the model (to avoid runtime downloads)
18
+ RUN python -c "from transformers import pipeline; pipeline('sentiment-analysis', model='distilbert-base-uncased-finetuned-sst-2-english')"
19
+
20
  # Expose port for FastAPI
21
  EXPOSE 7860
22
 
23
  # Run FastAPI server
24
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]