XGB_VALIDATIONS / Dockerfile
subbunanepalli's picture
Create Dockerfile
c1d9ebe verified
raw
history blame contribute delete
442 Bytes
# Use the official lightweight Python image.
FROM python:3.10-slim
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
# Set work directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY . .
# Expose the port FastAPI will run on
EXPOSE 7860
# Run the app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]