[build] x86 images

This commit is contained in:
Piotr Domański 2024-03-02 15:36:44 +01:00
parent 8b7f8b7011
commit 255a7b28b9

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
VERSION=0.`git rev-list --count HEAD`
.PHONY: black
DOCKER_BUILD=docker build
ifeq ($(shell uname -m), arm64)
DOCKER_BUILD=docker buildx build --platform linux/amd64
endif
build:
$(DOCKER_BUILD) -t registry.domandoman.xyz/fooder/app -f Dockerfile .
push:
docker push registry.domandoman.xyz/fooder/app