File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
# Makefile for the vllm-sim project
16
-
17
- CONTAINER_RUNTIME ?= docker
18
-
19
16
PACKAGE_VLLM_SIM = github.com/neuralmagic/vllm-sim/cmd/vllm-sim
20
17
VLLM_SIM_NAME = vllm-sim/vllm-sim
21
18
VLLM_SIM_TAG ?= 0.0.2
@@ -44,8 +41,7 @@ IMG = $(IMAGE_TAG_BASE):$(DEV_VERSION)
44
41
NAMESPACE ?= hc4ai-operator
45
42
46
43
47
- # CONTAINER_TOOL := $(shell command -v docker >/dev/null 2>&1 && echo docker || command -v podman >/dev/null 2>&1 && echo podman || echo "")
48
- CONTAINER_TOOL ?= docker
44
+ CONTAINER_TOOL := $(shell { command -v docker >/dev/null 2>&1 && echo docker; } || { command -v podman >/dev/null 2>&1 && echo podman; } || echo "")
49
45
BUILDER := $(shell command -v buildah >/dev/null 2>&1 && echo buildah || echo $(CONTAINER_TOOL ) )
50
46
PLATFORMS ?= linux/amd64 # linux/arm64 # linux/s390x,linux/ppc64le
51
47
You can’t perform that action at this time.
0 commit comments