Karan Goel commited on
Commit
e8bc07b
ยท
1 Parent(s): 2a9f4b7
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. tutorial-1.py +1 -1
Dockerfile CHANGED
@@ -45,7 +45,7 @@ ENV MEERKAT_CONFIG=$HOME/config.yaml
45
 
46
  COPY --chown=user ./tutorial-1.py $HOME/tutorial-1.py
47
 
48
- RUN mk run $HOME/tutorial-1.py --host 0.0.0.0 --api-port 7860
49
 
50
  # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
51
 
 
45
 
46
  COPY --chown=user ./tutorial-1.py $HOME/tutorial-1.py
47
 
48
+ # RUN mk run $HOME/tutorial-1.py --host 0.0.0.0 --api-port 7860
49
 
50
  # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
51
 
tutorial-1.py CHANGED
@@ -66,6 +66,6 @@ from fastapi.staticfiles import StaticFiles
66
  from meerkat.constants import PathHelper
67
  print(PathHelper().appdir)
68
  print("Mounting static files...")
69
- page().mount("/", StaticFiles(directory=os.path.abspath(PathHelper().appdir + "build/"), html=True), "test")
70
  # page().mount("/static", StaticFiles(directory=os.path.abspath("./temp/"),html = True), "test")
71
  page.launch()
 
66
  from meerkat.constants import PathHelper
67
  print(PathHelper().appdir)
68
  print("Mounting static files...")
69
+ page().mount("/", StaticFiles(directory=os.path.abspath(PathHelper().appdir + "/build/"), html=True), "test")
70
  # page().mount("/static", StaticFiles(directory=os.path.abspath("./temp/"),html = True), "test")
71
  page.launch()