-
Notifications
You must be signed in to change notification settings - Fork 43
/
Makefile
24 lines (19 loc) · 950 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Check if we need to prepend docker commands with sudo
SUDO := $(shell docker version >/dev/null 2>&1 || echo "sudo")
# If LABEL is not provided set default value
LABEL ?= $(shell git rev-parse --short HEAD)$(and $(shell git status -s),-dirty-$(shell id -u -n))
# If TAG is not provided set default value
SERVER_TAG ?= stellar/stellar-demo-wallet-server:$(LABEL)
CLIENT_TAG ?= stellar/stellar-demo-wallet-client:$(LABEL)
# https://github.com/opencontainers/image-spec/blob/master/annotations.md
BUILD_DATE := $(shell date -u +%FT%TZ)
docker-build-server:
$(SUDO) docker build -f Dockerfile-server --pull --label org.opencontainers.image.created="$(BUILD_DATE)" \
-t $(SERVER_TAG) .
docker-push-server:
$(SUDO) docker push $(SERVER_TAG)
docker-build-client:
$(SUDO) docker build -f Dockerfile-client --pull --label org.opencontainers.image.created="$(BUILD_DATE)" \
-t $(CLIENT_TAG) .
docker-push-client:
$(SUDO) docker push $(CLIENT_TAG)