Hello_World / Dockerfile
Manu11Pro's picture
Update Dockerfile
01368c0 verified
Raw
History Blame Contribute Delete
227 Bytes
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"]