Yahir commited on
Commit
62181eb
·
1 Parent(s): 862e2ff

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -7,7 +7,8 @@ RUN cd /code && make -j
7
  RUN wget https://huggingface.co/eachadea/legacy-ggml-vicuna-13b-4bit/resolve/main/ggml-vicuna-13b-4bit.bin -P /code
8
  WORKDIR /code
9
 
10
- RUN pip install streamlit
11
 
12
  COPY app.py /code
13
- CMD ["streamlit", "run", "--server.port", "7860", "app.py"]
 
 
7
  RUN wget https://huggingface.co/eachadea/legacy-ggml-vicuna-13b-4bit/resolve/main/ggml-vicuna-13b-4bit.bin -P /code
8
  WORKDIR /code
9
 
10
+ RUN pip install streamlit jupyterlab
11
 
12
  COPY app.py /code
13
+ EXPOSE 7860
14
+ CMD ["jupyter", "lab", "--ip='*'", "--port=7860", "--no-browser", "--allow-root"]