Boning c commited on
Commit
40629c9
·
verified ·
1 Parent(s): 69c76c8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -9
Dockerfile CHANGED
@@ -1,20 +1,14 @@
1
  FROM python:3.10-slim
2
 
3
- # Install build tools and dependencies
4
- RUN apt-get update && apt-get install -y \
5
- build-essential \
6
- git \
7
- curl \
8
- wget \
9
- && rm -rf /var/lib/apt/lists/*
10
 
11
  WORKDIR /app
12
 
13
- # Python deps
14
  COPY requirements.txt .
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
- # Download GGUF model
18
  RUN mkdir models && \
19
  curl -L -o models/Sam-reason-A1.Q4_K_S.gguf \
20
  https://huggingface.co/mradermacher/Sam-reason-A1-GGUF/resolve/main/Sam-reason-A1.Q4_K_S.gguf
 
1
  FROM python:3.10-slim
2
 
3
+ RUN apt-get update && apt-get install -y build-essential git curl wget \
4
+ && rm -rf /var/lib/apt/lists/*
 
 
 
 
 
5
 
6
  WORKDIR /app
7
 
 
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
+ # GGUF model
12
  RUN mkdir models && \
13
  curl -L -o models/Sam-reason-A1.Q4_K_S.gguf \
14
  https://huggingface.co/mradermacher/Sam-reason-A1-GGUF/resolve/main/Sam-reason-A1.Q4_K_S.gguf