mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
* 📝 Update release notes * ✨ Add internal GitHub action to pull docs artifact * 🙈 Add archive.zip to gitignore
7 lines
106 B
Docker
7 lines
106 B
Docker
FROM python:3.7
|
|
|
|
RUN pip install httpx "pydantic==1.5.1"
|
|
|
|
COPY ./app /app
|
|
|
|
CMD ["python", "/app/main.py"]
|