Spaces:
Running
Running
File size: 773 Bytes
60ffe25 c510f6e 9cc9faa 60ffe25 c006108 60ffe25 c006108 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# Step 1: Use an official Python runtime as a parent image
FROM python:3.9-slim
# Step 2: Set the working directory
WORKDIR /app
# Step 3: Copy the requirements file into the container
COPY requirements.txt /app/
# Step 4: Install any dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Set an environment variable for Hugging Face cache
ENV TRANSFORMERS_CACHE=/app/huggingface_cache
# Ensure the cache directory is writable
RUN mkdir -p /app/huggingface_cache && chmod -R 777 /app/huggingface_cache
# Step 5: Copy the rest of the application code
COPY . /app/
# # Step 6: Expose the port that FastAPI will run on
# EXPOSE 8000
# Step 7: Command to run the FastAPI app using Uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|