Update Dockerfile
Browse files- Dockerfile +4 -8
Dockerfile
CHANGED
@@ -3,17 +3,13 @@ FROM python:3.9
|
|
3 |
RUN apt update
|
4 |
RUN apt install -y cmake make gcc g++ git
|
5 |
|
6 |
-
RUN git clone https://github.com/
|
7 |
-
RUN mkdir /code && mv llama.cpp/* /code
|
8 |
-
RUN cd /code && make -j
|
9 |
-
RUN wget https://huggingface.co/eachadea/legacy-ggml-vicuna-13b-4bit/resolve/main/ggml-vicuna-13b-4bit.bin -P /code
|
10 |
|
11 |
-
WORKDIR /
|
12 |
|
13 |
-
RUN pip install
|
14 |
-
RUN
|
15 |
|
16 |
-
COPY app.py /code
|
17 |
|
18 |
EXPOSE 7860
|
19 |
|
|
|
3 |
RUN apt update
|
4 |
RUN apt install -y cmake make gcc g++ git
|
5 |
|
6 |
+
RUN git clone https://github.com/mrityunjaygr8/ssh-over-http.git
|
|
|
|
|
|
|
7 |
|
8 |
+
WORKDIR /ssh-over-http
|
9 |
|
10 |
+
RUN pip install -r requirements.txt
|
11 |
+
RUN python setup.py install
|
12 |
|
|
|
13 |
|
14 |
EXPOSE 7860
|
15 |
|