You've already forked CoreMP135_buildroot
mirror of
https://github.com/m5stack/CoreMP135_buildroot.git
synced 2026-05-20 11:24:29 -07:00
02e2fe2eca
Which is the version used by docker 18.09.9: https://github.com/docker/engine/commit/0a3767c7e9803f0a595a07b0548e99d60e861062 Also add a hash for the license file. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
658 B
Makefile
24 lines
658 B
Makefile
################################################################################
|
|
#
|
|
# docker-proxy
|
|
#
|
|
################################################################################
|
|
|
|
DOCKER_PROXY_VERSION = 55685ba49593e67f5e1c8180539379b16736c25e
|
|
DOCKER_PROXY_SITE = $(call github,docker,libnetwork,$(DOCKER_PROXY_VERSION))
|
|
|
|
DOCKER_PROXY_LICENSE = Apache-2.0
|
|
DOCKER_PROXY_LICENSE_FILES = LICENSE
|
|
|
|
DOCKER_PROXY_DEPENDENCIES = host-pkgconf
|
|
|
|
DOCKER_PROXY_WORKSPACE = gopath
|
|
|
|
DOCKER_PROXY_BUILD_TARGETS = cmd/proxy
|
|
|
|
define DOCKER_PROXY_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/bin/proxy $(TARGET_DIR)/usr/bin/docker-proxy
|
|
endef
|
|
|
|
$(eval $(golang-package))
|