mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
* Uses experimental docker multi-arch * Fixes dockerfile to build node and golang images * Adds ldflags * Adds buildx to push.yml * Adds docker login * Adds login in again * Login using run * Login using run * Adds Makefile * Updates actions * Fixes push
7 lines
233 B
Makefile
7 lines
233 B
Makefile
TAG := $(shell git describe --tags)
|
|
PLATFROMS := linux/amd64,linux/arm64,linux/arm/v7
|
|
|
|
.PHONY: publish
|
|
publish:
|
|
docker buildx build --build-arg TAG=$(TAG) --platform $(PLATFROMS) -t amir20/test:latest -t amir20/test:$(TAG) --push .
|