Spaces:
Runtime error
Runtime error
h3110Fr13nd
commited on
Commit
·
6e823b8
1
Parent(s):
8242e17
dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
FROM ollama/ollama as ollama
|
2 |
RUN ollama serve & sleep 5 && ollama pull pxlksr/defog_sqlcoder-7b-2:Q4_K
|
3 |
ENV HOME=/home
|
4 |
-
RUN apt-get update && apt-get install -y
|
|
|
5 |
COPY requirements.txt ./
|
6 |
RUN python3.12 -m pip install --no-cache-dir -r requirements.txt
|
7 |
COPY . .
|
|
|
1 |
FROM ollama/ollama as ollama
|
2 |
RUN ollama serve & sleep 5 && ollama pull pxlksr/defog_sqlcoder-7b-2:Q4_K
|
3 |
ENV HOME=/home
|
4 |
+
RUN apt-get update && apt-get install -y software-properties-common
|
5 |
+
RUN add-apt-repository -y ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.12 python3.12-pip
|
6 |
COPY requirements.txt ./
|
7 |
RUN python3.12 -m pip install --no-cache-dir -r requirements.txt
|
8 |
COPY . .
|