👷 Add custom GitHub actions to preview docs

This commit is contained in:
Sebastián Ramírez
2021-08-24 16:05:55 +02:00
parent 343c326d59
commit 0a5e56cb06
6 changed files with 209 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
FROM python:3.7
RUN pip install httpx "pydantic==1.5.1" pygithub
COPY ./app /app
CMD ["python", "/app/main.py"]