Karan Goel commited on
Commit
4e3f771
ยท
1 Parent(s): a9ecfe5
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM python:3.9
2
 
3
  WORKDIR /code
4
- COPY ./tutorial-1.py /code/tutorial-1.py
5
 
6
  # Install node >= 18.0.0 and npm
7
  RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
@@ -26,5 +26,7 @@ ENV MEERKAT_LOG_DIR=/code/logs
26
  RUN chmod 777 /code/
27
  ENV MEERKAT_CONFIG=/code/config.yaml
28
 
 
 
29
  # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
30
  CMD ["mk", "run", "/code/tutorial-1.py", "--host", "0.0.0.0", "--api-port", "7860"]
 
1
  FROM python:3.9
2
 
3
  WORKDIR /code
4
+
5
 
6
  # Install node >= 18.0.0 and npm
7
  RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
 
26
  RUN chmod 777 /code/
27
  ENV MEERKAT_CONFIG=/code/config.yaml
28
 
29
+ COPY ./tutorial-1.py /code/tutorial-1.py
30
+
31
  # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
32
  CMD ["mk", "run", "/code/tutorial-1.py", "--host", "0.0.0.0", "--api-port", "7860"]