Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -3
Dockerfile
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
# Base image for Python
|
2 |
-
FROM python:3.
|
3 |
|
4 |
-
#
|
5 |
-
#
|
|
|
|
|
|
|
6 |
RUN apk update && apk add wget build-base python3-dev musl-dev linux-headers
|
7 |
RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
|
8 |
# Install Ollama server
|
|
|
1 |
# Base image for Python
|
2 |
+
FROM python:3.11.9-alpine3.20
|
3 |
|
4 |
+
# Just for sure everything will be fine.
|
5 |
+
# ALSO ITS BAD! But since its docker, probably.. screw it?
|
6 |
+
USER root
|
7 |
+
|
8 |
+
# Installing gcc compiler and main library.
|
9 |
RUN apk update && apk add wget build-base python3-dev musl-dev linux-headers
|
10 |
RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
|
11 |
# Install Ollama server
|