Spaces:
Running
Running
MVPilgrim
commited on
Commit
·
1a19963
1
Parent(s):
355fa9f
Copy .streamlit/main.css.
Browse files- Dockerfile +7 -6
Dockerfile
CHANGED
@@ -15,12 +15,13 @@ WORKDIR /app
|
|
15 |
|
16 |
#RUN ls -l / || ls -l /lib || ls -l /usr || ls -l /usr/lib6 || echo "### An ls failed."
|
17 |
|
18 |
-
COPY ./requirements.txt
|
19 |
-
COPY ./semsearch.py
|
20 |
-
COPY ./startup.sh
|
21 |
-
COPY ./semsearchDbgUI.py
|
22 |
-
COPY ./startupDbgUI.sh
|
23 |
-
|
|
|
24 |
|
25 |
COPY ./multi-qa-MiniLM-L6-cos-v1 /app/multi-qa-MiniLM-L6-cos-v1
|
26 |
|
|
|
15 |
|
16 |
#RUN ls -l / || ls -l /lib || ls -l /usr || ls -l /usr/lib6 || echo "### An ls failed."
|
17 |
|
18 |
+
COPY ./requirements.txt /app/requirements.txt
|
19 |
+
COPY ./semsearch.py /app/semsearch.py
|
20 |
+
COPY ./startup.sh /app/startup.sh
|
21 |
+
COPY ./semsearchDbgUI.py /app/semsearchDbgUI.py
|
22 |
+
COPY ./startupDbgUI.sh /app/startupDbgUI.sh
|
23 |
+
COPY ./.streamlit/main.css /app/.streamlit/main.css
|
24 |
+
RUN chmod 755 /app/startup.sh /app/startupDbgUI.sh
|
25 |
|
26 |
COPY ./multi-qa-MiniLM-L6-cos-v1 /app/multi-qa-MiniLM-L6-cos-v1
|
27 |
|