age_gender_classifier / Dockerfile
omar sayed
Add application file
2fa64cf
raw
history blame contribute delete
303 Bytes
FROM python:3.10
# Create working directory
WORKDIR /app
# Copy project files
COPY . .
# Install dependencies
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Expose port for Uvicorn
EXPOSE 7860
# Run FastAPI app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]