Update Dockerfile
Browse files- 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 |
-
|
|
|
|
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"]
|