File size: 581 Bytes
ce2665b
2e525ca
 
6d22f86
 
 
 
 
ce2665b
2e525ca
 
ce2665b
 
2e525ca
ce2665b
 
2e525ca
ce2665b
2e525ca
 
ce2665b
3e00208
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Use an official Python runtime as the base image
FROM python:3.10

# Set environment variables for Hugging Face cache (FIX: Use /tmp)
ENV TRANSFORMERS_CACHE=/tmp
ENV HF_HOME=/tmp
ENV HF_MODULES_CACHE=/tmp

# Set the working directory in the container
WORKDIR /app

# Copy the FastAPI application code
COPY server.py /app/server.py

# Install necessary dependencies
RUN pip install --no-cache-dir fastapi uvicorn transformers torch sentencepiece

# Expose the FastAPI port
EXPOSE 7860

# Run the FastAPI server
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]