FROM python:3.14-slim RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* WORKDIR /app RUN pip install --no-cache-dir fastapi uvicorn[standard] COPY . . EXPOSE 7860 CMD ["python", "Hello_World.py"]