nouamanetazi HF staff commited on
Commit
133c842
·
1 Parent(s): 591a6f9
Files changed (1) hide show
  1. Dockerfile +4 -13
Dockerfile CHANGED
@@ -1,21 +1,12 @@
1
  # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
  # you will also find guides on how best to write your Dockerfile
3
- FROM python:3.9
4
-
5
- # WORKDIR /code
6
- # COPY ./requirements.txt /code/requirements.txt
7
- # RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
- # COPY . .
9
-
10
  RUN mkdir -p ./models/7B
11
  RUN wget -O ./models/7B/gpt-j-ggml-model-q4_0.bin https://huggingface.co/ocordeiro/ggml-gpt-j-6b-q4_0/resolve/main/gpt-j-ggml-model-q4_0.bin
12
 
13
-
14
  FROM ghcr.io/ggerganov/llama.cpp:light
15
-
16
- # echo ls files
17
- RUN ls -la
18
-
19
- CMD ["-m", "./models/7B/gpt-j-ggml-model-q4_0.bin", "-p", "Building a website can be done in 10 simple steps:", "-n", "512"]
20
 
21
  # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
  # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
  # you will also find guides on how best to write your Dockerfile
3
+ FROM python:3.9 AS downloader
4
+ WORKDIR /app
 
 
 
 
 
5
  RUN mkdir -p ./models/7B
6
  RUN wget -O ./models/7B/gpt-j-ggml-model-q4_0.bin https://huggingface.co/ocordeiro/ggml-gpt-j-6b-q4_0/resolve/main/gpt-j-ggml-model-q4_0.bin
7
 
 
8
  FROM ghcr.io/ggerganov/llama.cpp:light
9
+ COPY --from=downloader /app/models/7B/gpt-j-ggml-model-q4_0.bin ./models/7B/gpt-j-ggml-model-q4_0.bin
10
+ CMD ["-m", "/models/7B/gpt-j-ggml-model-q4_0.bin", "-p", "Building a website can be done in 10 simple steps:", "-n", "512"]
 
 
 
11
 
12
  # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]