mirror of
https://github.com/fastapi/sqlmodel.git
synced 2026-01-05 17:09:42 -06: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"]
|