Skip to content

Commit

Permalink
Merge pull request containers#124 from rhatdan/bootc
Browse files Browse the repository at this point in the history
Cleanup Makefile for chatbot
  • Loading branch information
sallyom authored Apr 1, 2024
2 parents 942df22 + 851d500 commit 3396290
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions recipes/natural_language_processing/chatbot/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
APP=chatbot
MODELIMAGE=quay.io/ai-lab/mistral-7b-instruct:latest
APPIMAGE=quay.io/ai-lab/${APP}:latest
SERVERIMAGE=quay.io/ai-lab/llamacpp-python:latest
SSHPUBKEY := $(shell cat ${HOME}/.ssh/id_rsa.pub;)
MODELIMAGE ?= quay.io/ai-lab/mistral-7b-instruct:latest
APPIMAGE ?= quay.io/ai-lab/${APP}:latest
SERVERIMAGE ?= quay.io/ai-lab/llamacpp-python:latest
SSHPUBKEY ?= $(shell cat ${HOME}/.ssh/id_rsa.pub;)
.PHONY: build
build:
podman build -f builds/Containerfile -t ghcr.io/ai-lab-recipes/${APP} .
Expand All @@ -27,7 +27,6 @@ quadlet:
> /tmp/${APP}.yaml
cp quadlet/${APP}.kube build/${APP}.kube


.PHONY: install
install:
wget https://www.slimjetbrowser.com/chrome/files/103.0.5060.53/google-chrome-stable_current_amd64.deb
Expand Down

0 comments on commit 3396290

Please sign in to comment.