Cleanup of docker images

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-09-03 15:33:11 -04:00
parent d7dc7be276
commit dc20551288
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
20 changed files with 48 additions and 45 deletions

View file

@ -21,11 +21,11 @@ REPO_INFO=$(shell git config --get remote.origin.url)
ARCH ?= $(shell go env GOARCH)
GOARCH = ${ARCH}
BASEIMAGE?=alpine:3.9
BASEIMAGE?=alpine:3.10
ALL_ARCH = amd64 arm arm64 ppc64le
ALL_ARCH = amd64 arm arm64
QEMUVERSION=v3.0.0
QEMUVERSION=v4.1.0-1
IMGNAME = fastcgi-helloserver
IMAGE = $(REGISTRY)/$(IMGNAME)
@ -36,11 +36,7 @@ ifeq ($(ARCH),arm)
GOARCH=arm
endif
ifeq ($(ARCH),arm64)
QEMUARCH=aarch64
endif
ifeq ($(ARCH),ppc64le)
QEMUARCH=ppc64le
GOARCH=ppc64le
QEMUARCH=aarch64
endif
TEMP_DIR := $(shell mktemp -d)