Initial commit: FastAPI Hello-World app for hello-test
Deploy App / deploy (push) Successful in 24s

This commit is contained in:
2026-07-08 13:38:18 +02:00
commit af68c39ed0
5 changed files with 55 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn[standard]
COPY main.py .
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]