Spaces:
Running
Running
MVPilgrim
commited on
Commit
·
0d5eced
1
Parent(s):
b9c88c9
Nvidia base image.
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -3,6 +3,8 @@ RUN apt-get update
|
|
3 |
RUN apt-get install musl
|
4 |
|
5 |
FROM python:3.11.5 as python-base
|
|
|
|
|
6 |
|
7 |
FROM nvidia/cuda:12.6.0-cudnn-runtime-ubuntu24.04 as final
|
8 |
RUN apt-get update
|
@@ -17,7 +19,7 @@ COPY --from=python-base /usr/local/bin/pip3.11 /usr/local/bin/pip3.11
|
|
17 |
WORKDIR /app
|
18 |
COPY ./requirements.txt /app/requirements.txt
|
19 |
COPY ./semsearch.py /app/semsearch.py
|
20 |
-
COPY ./startup.sh /app/startup.sh
|
21 |
COPY ./.streamlit/main.css /app/.streamlit/main.css
|
22 |
COPY ./app.py /app/app.py
|
23 |
RUN chmod 755 /app/startup.sh
|
|
|
3 |
RUN apt-get install musl
|
4 |
|
5 |
FROM python:3.11.5 as python-base
|
6 |
+
RUN apt-get update
|
7 |
+
RUN apt-get install python3
|
8 |
|
9 |
FROM nvidia/cuda:12.6.0-cudnn-runtime-ubuntu24.04 as final
|
10 |
RUN apt-get update
|
|
|
19 |
WORKDIR /app
|
20 |
COPY ./requirements.txt /app/requirements.txt
|
21 |
COPY ./semsearch.py /app/semsearch.py
|
22 |
+
COPY ./startup.sh /app/startup.sh[
|
23 |
COPY ./.streamlit/main.css /app/.streamlit/main.css
|
24 |
COPY ./app.py /app/app.py
|
25 |
RUN chmod 755 /app/startup.sh
|