mirror of
https://github.com/status-im/status-react.git
synced 2025-01-12 03:54:32 +00:00
a31d10f6dc
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
13 lines
253 B
Makefile
13 lines
253 B
Makefile
GIT_COMMIT = $(shell git rev-parse --short HEAD)
|
|
|
|
IMAGE_TAG = 1.0.0
|
|
IMAGE_NAME = statusteam/windows-desktop-ubuntu:nsis-$(IMAGE_TAG)
|
|
|
|
build:
|
|
docker build \
|
|
--label="commit=$(GIT_COMMIT)" \
|
|
-t $(IMAGE_NAME) .
|
|
|
|
push: build
|
|
docker push $(IMAGE_NAME)
|