Skip to content

Commit

Permalink
fix: We still need 8b
Browse files Browse the repository at this point in the history
  • Loading branch information
$NAME authored and $NAME committed Oct 17, 2024
1 parent 430e453 commit cc0745f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
docker build -t ghcr.io/bionic-gpt/llama-3.2-3b:latest -t bionic-gpt/llama-3.2-3b:latest -f Dockerfile.llama3.2-3b.cpu .
docker push ghcr.io/bionic-gpt/llama-3.2-3b:latest
docker build -t ghcr.io/bionic-gpt/llama-3-8b-chat:latest -t bionic-gpt/llama-3-8b-chat:latest -f Dockerfile.llama-3-8b-chat .
docker push ghcr.io/bionic-gpt/llama-3-8b-chat:latest
docker build -t ghcr.io/bionic-gpt/embeddings:latest -t bionic-gpt/embeddings:latest -f Dockerfile.embeddings .
docker push ghcr.io/bionic-gpt/embeddings:latest
Expand Down
4 changes: 4 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
"name": "ghcr.io/bionic-gpt/llama-3.2-3b:latest",
"skipLogin": true
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/llama-3-8b-chat:latest",
"skipLogin": true
}],
["@semantic-release-plus/docker", {
"name": "ghcr.io/bionic-gpt/embeddings:latest",
"skipLogin": true
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.llama3-8b-chat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM ollama/ollama:0.3.13

RUN nohup bash -c "ollama serve &" && sleep 20 && ollama pull llama3

0 comments on commit cc0745f

Please sign in to comment.