diff --git a/Dockerfile b/Dockerfile index a62d828..1d3e6c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG TARGETOS ARG TARGETARCH WORKDIR /app/ -RUN apk update && apk add --no-cache git && adduser -D -g '' gopher && apk add -U --no-cache ca-certificates +RUN apk update && apk add --no-cache git gcc && adduser -D -g '' gopher && apk add -U --no-cache ca-certificates ADD go.mod go.sum ./ RUN go mod download ADD . . diff --git a/Makefile b/Makefile index eaee4d2..1698f3d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .DEFAULT_GOAL := default IMAGE ?= docker.cluster.fun/averagemarcus/gopherss:latest -PLATFORMS ?= linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 +PLATFORMS ?= linux/amd64,linux/arm/v7,linux/arm64 export DOCKER_CLI_EXPERIMENTAL=enabled