credit-scoring-mlops / Dockerfile
GitHub Actions
Auto-deploy from GitHub Actions
3842201
FROM python:3.11-slim
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ app/
COPY app.py gradio_app.py ./
COPY src/ src/
EXPOSE 7860
CMD ["python", "app.py"]