fruit_predict / Dockerfile
Rakib023's picture
Create Dockerfile
61e4931 verified
raw
history blame
376 Bytes
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy requirements file
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY . .
# Expose port 7860 (Hugging Face default)
EXPOSE 7860
# Run the FastAPI app with uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]