Phoenix21 commited on
Commit
015495a
·
verified ·
1 Parent(s): b6332c3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -5
Dockerfile CHANGED
@@ -1,12 +1,15 @@
1
- # Use a lightweight Python 3.9 image
2
  FROM python:3.9-slim
3
 
4
  # Set environment variables for Python and Hugging Face cache
5
  ENV PYTHONUNBUFFERED=1
6
- ENV TRANSFORMERS_CACHE="/tmp/cache/huggingface/transformers"
7
  ENV HF_HOME="/tmp/cache/huggingface"
8
 
9
- # Create a non-root user and switch to it
 
 
 
 
10
  RUN useradd -m -u 1000 user
11
  USER user
12
 
@@ -21,8 +24,8 @@ RUN pip install --no-cache-dir --upgrade pip && \
21
  # Copy the rest of the application code
22
  COPY --chown=user . /app
23
 
24
- # Expose port 7860 (required by Hugging Face Spaces)
25
  EXPOSE 7860
26
 
27
- # Start the FastAPI app using uvicorn via python -m to ensure it's found
28
  CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ # Use a lightweight Python 3.9-slim image
2
  FROM python:3.9-slim
3
 
4
  # Set environment variables for Python and Hugging Face cache
5
  ENV PYTHONUNBUFFERED=1
 
6
  ENV HF_HOME="/tmp/cache/huggingface"
7
 
8
+ # Accept HF_TOKEN as a build argument and set it as an environment variable
9
+ ARG HF_TOKEN
10
+ ENV HF_TOKEN=${HF_TOKEN}
11
+
12
+ # Create a non-root user and switch to that user
13
  RUN useradd -m -u 1000 user
14
  USER user
15
 
 
24
  # Copy the rest of the application code
25
  COPY --chown=user . /app
26
 
27
+ # Expose port 7860 (Hugging Face Spaces expects this port)
28
  EXPOSE 7860
29
 
30
+ # Start the FastAPI app using uvicorn via python -m
31
  CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]