MuriL-2.0 / Dockerfile
Sp2503's picture
Update Dockerfile
5e9f7e9 verified
raw
history blame contribute delete
325 Bytes
FROM python:3.10-slim
WORKDIR /app
# Copy and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Expose the port Hugging Face expects
EXPOSE 7860
# Run the FastAPI server
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]