alibidaran commited on
Commit
9dfbe53
·
verified ·
1 Parent(s): 6d55b2c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -3
Dockerfile CHANGED
@@ -1,8 +1,11 @@
1
  # Base image for Python
2
- FROM python:3.10-slim
3
 
4
- # Install dependencies for Ollama
5
- #RUN apt-get update && apt-get install -y curl unzip && rm -rf /var/lib/apt/lists/*
 
 
 
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