From cfa338108fdf93a8e9fd9938aab03bdcadbfb95b Mon Sep 17 00:00:00 2001 From: Michael Parker Date: Mon, 12 Apr 2021 19:38:16 -0400 Subject: [PATCH] Fixes ghcr build Removes version pins so packages install properly. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 574bfda..bedf579 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.15-alpine3.12 AS builder ARG VERSION -RUN apk add --update --no-cache git=2.26.2-r0 make=4.3-r0 upx=3.96-r0 +RUN apk add --update --no-cache git make upx WORKDIR /app/ COPY go.mod go.sum /app/ RUN go mod download