spideyrim commited on
Commit
d0cf59e
1 Parent(s): f4d45ef

Create Dokerfile

Browse files
Files changed (1) hide show
  1. Dokerfile +7 -0
Dokerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /code
4
+
5
+ RUN python grid.py
6
+
7
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]