ALBORAQ-AI-IMMO / Dockerfile
mhdbbbbb's picture
Upload folder using huggingface_hub
fc41845 verified
raw
history blame contribute delete
502 Bytes
FROM python:3.10-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Expose the port Hugging Face expects
EXPOSE 7860
# Command to run the application
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860"]