limcheekin
commited on
Commit
·
28ee0f2
1
Parent(s):
9c1af73
chore: add copy main.py
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -17,8 +17,9 @@ RUN pip install -U pip setuptools wheel && \
|
|
17 |
RUN mkdir model && \
|
18 |
curl -L https://huggingface.co/TheBloke/orca_mini_v3_13B-GGML/resolve/main/orca_mini_v3_13b.ggmlv3.q5_K_S.bin -o model/ggmlv3-model.bin
|
19 |
|
20 |
-
COPY ./start_server.sh ./
|
21 |
-
COPY ./
|
|
|
22 |
|
23 |
# Make the server start script executable
|
24 |
RUN chmod +x ./start_server.sh
|
|
|
17 |
RUN mkdir model && \
|
18 |
curl -L https://huggingface.co/TheBloke/orca_mini_v3_13B-GGML/resolve/main/orca_mini_v3_13b.ggmlv3.q5_K_S.bin -o model/ggmlv3-model.bin
|
19 |
|
20 |
+
COPY ./start_server.sh ./
|
21 |
+
COPY ./main.py ./
|
22 |
+
COPY ./README.md ./
|
23 |
|
24 |
# Make the server start script executable
|
25 |
RUN chmod +x ./start_server.sh
|