CalebCometML commited on
Commit
a200a66
·
1 Parent(s): dc8961d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -3
Dockerfile CHANGED
@@ -1,8 +1,11 @@
1
  FROM python:3.9
2
 
3
- RUN pip install kangas
4
- WORKDIR /app
5
 
 
6
  COPY ./ /app
7
 
8
- CMD kangas server --frontend-port=7860
 
 
 
1
  FROM python:3.9
2
 
3
+ COPY requirements.txt /
4
+ RUN pip install -r /requirements.txt
5
 
6
+ WORKDIR /app
7
  COPY ./ /app
8
 
9
+ RUN kangas server --frontend-port=7860
10
+ RUN streamlit run app.py --server.port 7680
11
+ CMD flask --app router run