mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +00:00
* 📝 Update release notes * 🔊 Make curl verbose when triggering docs preview * 🔧 Update GitHub Actions circus to use commit hash * ✨ Add PR docs preview watcher
7 lines
115 B
Docker
7 lines
115 B
Docker
FROM python:3.7
|
|
|
|
RUN pip install httpx PyGithub "pydantic==1.5.1"
|
|
|
|
COPY ./app /app
|
|
|
|
CMD ["python", "/app/main.py"]
|