From 558ecafd2c91746fa4104256c70a9976ef4d2930 Mon Sep 17 00:00:00 2001 From: greg pereira Date: Mon, 10 Jun 2024 08:56:01 -0700 Subject: [PATCH] removing empty default option in containerfile Signed-off-by: greg pereira --- model_servers/common/Makefile.common | 2 +- model_servers/llamacpp_python/base/Containerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/model_servers/common/Makefile.common b/model_servers/common/Makefile.common index b363690d..74a4e378 100644 --- a/model_servers/common/Makefile.common +++ b/model_servers/common/Makefile.common @@ -11,7 +11,7 @@ endif .PHONY: build build: - podman build --squash-all $(CHAT_FORMAT:%=--build-arg CHAT_FORMAT=%) --build-arg PORT=$(PORT) -t $(IMAGE) . -f base/Containerfile + podman build --squash-all --build-arg PORT=$(PORT) -t $(IMAGE) . -f base/Containerfile .PHONY: install install: diff --git a/model_servers/llamacpp_python/base/Containerfile b/model_servers/llamacpp_python/base/Containerfile index c650191d..e1a1516a 100644 --- a/model_servers/llamacpp_python/base/Containerfile +++ b/model_servers/llamacpp_python/base/Containerfile @@ -1,5 +1,4 @@ FROM registry.access.redhat.com/ubi9/python-311:1-62.1716478620 -ENV CHAT_FORMAT= WORKDIR /locallm COPY src . USER root