diff options
author | Kunal Kushwaha <kushwaha_kunal_v7@lab.ntt.co.jp> | 2019-02-01 11:26:15 +0900 |
---|---|---|
committer | Kunal Kushwaha <kushwaha_kunal_v7@lab.ntt.co.jp> | 2019-02-01 11:36:52 +0900 |
commit | 5eb6fbe1c2373195c08b979e52498f0389a1f43e (patch) | |
tree | 9cce16ea26b81eb8af61b8d832a6a7bf7aedd0e6 /Makefile | |
parent | 805c6d997b4eb8941e7c2a12879bf9a5284835d0 (diff) | |
download | podman-5eb6fbe1c2373195c08b979e52498f0389a1f43e.tar.gz podman-5eb6fbe1c2373195c08b979e52498f0389a1f43e.tar.bz2 podman-5eb6fbe1c2373195c08b979e52498f0389a1f43e.zip |
Reduce Dockerfile based build time for libpod.
libpod code added at end of Dockerfile, avoids
git clone of other packages in Dockerfile on subsequent builds.
Signed-off-by: Kunal Kushwaha <kushwaha_kunal_v7@lab.ntt.co.jp>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -38,6 +38,7 @@ BUILD_INFO ?= $(shell date +%s) LIBPOD := ${PROJECT}/libpod LDFLAGS_PODMAN ?= $(LDFLAGS) -X $(LIBPOD).gitCommit=$(GIT_COMMIT) -X $(LIBPOD).buildInfo=$(BUILD_INFO) ISODATE ?= $(shell date --iso-8601) +#Update to LIBSECCOMP_COMMIT should reflect in Dockerfile too. LIBSECCOMP_COMMIT := release-2.3 # If GOPATH not specified, use one in the local directory |