johnpaulbin commited on
Commit
0dd59f4
·
verified ·
1 Parent(s): c7a04b1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -4,7 +4,8 @@ FROM ubuntu:latest
4
  # Update packages and install curl and gnupg
5
  RUN apt-get update && apt-get install -y \
6
  curl \
7
- gnupg
 
8
 
9
  # Install application
10
  RUN curl https://ollama.ai/install.sh | sh
@@ -16,7 +17,7 @@ WORKDIR /.ollama
16
  COPY entrypoint.sh /entrypoint.sh
17
  RUN chmod +x /entrypoint.sh
18
 
19
- RUN wget "https://huggingface.co/johnpaulbin/translator-llm/resolve/main/translator-llama3.1-q4km-2.gguf?download=true" -O llama.gguf
20
 
21
  ENTRYPOINT ["/entrypoint.sh"]
22
  CMD ["ollama", "serve"]
 
4
  # Update packages and install curl and gnupg
5
  RUN apt-get update && apt-get install -y \
6
  curl \
7
+ gnupg \
8
+ wget
9
 
10
  # Install application
11
  RUN curl https://ollama.ai/install.sh | sh
 
17
  COPY entrypoint.sh /entrypoint.sh
18
  RUN chmod +x /entrypoint.sh
19
 
20
+ RUN wget "https://huggingface.co/johnpaulbin/translator-llm/resolve/main/translator-llama3.1-q4km-2.gguf?download=true" -o llama.gguf
21
 
22
  ENTRYPOINT ["/entrypoint.sh"]
23
  CMD ["ollama", "serve"]