Skip to content

Commit

Permalink
Let build be customized by env vars for OSX (jaegertracing#3447)
Browse files Browse the repository at this point in the history
* Let build be customized by env vars for OSX

Signed-off-by: Ed Snible <[email protected]>

* Clean up and rename make variable

Signed-off-by: Ed Snible <[email protected]>
  • Loading branch information
esnible authored Dec 15, 2021
1 parent 576266f commit a532e66
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ ROOT_IMAGE ?= alpine:3.14
CERT_IMAGE := $(ROOT_IMAGE)
GOLANG_IMAGE := golang:1.17-alpine

BASE_IMAGE := localhost:5000/baseimg_alpine:latest
DEBUG_IMAGE := localhost:5000/debugimg_alpine:latest
PLATFORMS := linux/amd64,linux/s390x,linux/ppc64le,linux/arm64
DOCKER_REGISTRY ?= localhost:5000
BASE_IMAGE ?= $(DOCKER_REGISTRY)/baseimg_alpine:latest
DEBUG_IMAGE ?= $(DOCKER_REGISTRY)/debugimg_alpine:latest
PLATFORMS ?= linux/amd64,linux/s390x,linux/ppc64le,linux/arm64

create-baseimg-debugimg: create-baseimg create-debugimg

Expand Down

0 comments on commit a532e66

Please sign in to comment.