File size: 122 Bytes
d0cf59e
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.9

WORKDIR /code

RUN python grid.py

CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]