Fix docker build

This commit is contained in:
Marcus Noble 2020-10-17 22:12:32 +01:00
parent 7b6838429a
commit 9a769fb963
2 changed files with 3 additions and 3 deletions

View File

@ -6,11 +6,11 @@ ARG TARGETOS
ARG TARGETARCH
WORKDIR /app/
RUN apk update && apk add --no-cache git gcc && adduser -D -g '' gopher && apk add -U --no-cache ca-certificates
RUN apk update && apk add --no-cache --update gcc musl-dev git && adduser -D -g '' gopher && apk add -U --no-cache ca-certificates
ADD go.mod go.sum ./
RUN go mod download
ADD . .
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-w -s" -o gopherss .
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o gopherss .
FROM --platform=${TARGETPLATFORM:-linux/amd64} scratch
WORKDIR /app/

View File

@ -1,7 +1,7 @@
.DEFAULT_GOAL := default
IMAGE ?= docker.cluster.fun/averagemarcus/gopherss:latest
PLATFORMS ?= linux/amd64,linux/arm/v7,linux/arm64
PLATFORMS ?= linux/amd64
export DOCKER_CLI_EXPERIMENTAL=enabled