Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/NVIDIA/nvidia-docker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Abecassis <fabecassis@nvidia.com>2017-02-28 00:38:41 +0300
committerFelix Abecassis <fabecassis@nvidia.com>2017-02-28 00:56:52 +0300
commitec285e6b5523dd8b3c794fcbe5c22259bfb22fd8 (patch)
tree11941baedf07c30aa3a50536c6a88826ce14cddc
parent25a18f513b5c14056d92f2758e9a4f7941d4bf83 (diff)
Remove Docker version check in the Makefile
Old Docker versions are less likely to be used now, and with the new versioning used in Docker, it's not worth the hassle to maintain this check.
-rw-r--r--Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index f762b5d..e17e2ab 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,6 @@ PLUGIN_BIN := $(BIN_DIR)/nvidia-docker-plugin
DOCKER_VERS := $(shell $(NV_DOCKER) version -f '{{.Client.Version}}')
DOCKER_VERS_MAJ := $(shell echo $(DOCKER_VERS) | cut -d. -f1)
DOCKER_VERS_MIN := $(shell echo $(DOCKER_VERS) | cut -d. -f2)
-DOCKER_SUPPORTED := $(shell [ $(DOCKER_VERS_MAJ) -eq 1 -a $(DOCKER_VERS_MIN) -ge 9 ] && echo true)
DOCKER_RMI := $(NV_DOCKER) rmi
DOCKER_RUN := $(NV_DOCKER) run --rm --net=host
@@ -44,9 +43,6 @@ DOCKER_BUILD := $(NV_DOCKER) build --build-arg USER_ID="$(shell id -u)" \
all: build
build: distclean
-ifneq ($(DOCKER_SUPPORTED),true)
- $(error Unsupported Docker version)
-endif
@mkdir -p $(BIN_DIR)
@$(DOCKER_BUILD) -t $(PKG_NAME):$@ -f Dockerfile.$@ $(CURDIR)
@$(DOCKER_RUN) -v $(BIN_DIR):/go/bin:Z $(PKG_NAME):$@
@@ -73,17 +69,11 @@ tarball: build
@printf "\nFind tarball at $(DIST_DIR)\n\n"
deb: tarball
-ifneq ($(DOCKER_SUPPORTED),true)
- $(error Unsupported Docker version)
-endif
@$(DOCKER_BUILD) -t $(PKG_NAME):$@ -f Dockerfile.$@ $(CURDIR)
@$(DOCKER_RUN) -ti -v $(DIST_DIR):/dist:Z -v $(BUILD_DIR):/build:Z $(PKG_NAME):$@
@printf "\nFind packages at $(DIST_DIR)\n\n"
rpm: tarball
-ifneq ($(DOCKER_SUPPORTED),true)
- $(error Unsupported Docker version)
-endif
@$(DOCKER_BUILD) -t $(PKG_NAME):$@ -f Dockerfile.$@ $(CURDIR)
@$(DOCKER_RUN) -ti -v $(DIST_DIR):/dist:Z -v $(BUILD_DIR):/build:Z $(PKG_NAME):$@
@printf "\nFind packages at $(DIST_DIR)\n\n"