mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
* 🔥 Disable action Watch Docs Previews * 🔧 Use predefined name for docs artifacts for previews * ✨ Add new GitHub Action Comment Docs Preview in PR * 🔧 Refactor GitHub Action Preview Docs to work as workflow_run using new action to extract where to comment
7 lines
115 B
Docker
7 lines
115 B
Docker
FROM python:3.7
|
|
|
|
RUN pip install httpx "pydantic==1.5.1" pygithub
|
|
|
|
COPY ./app /app
|
|
|
|
CMD ["python", "/app/main.py"]
|