mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-22 07:08:06 +00:00
8 lines
115 B
Docker
8 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"]
|