Merge pull request #92 from parkervcp/fix_docker_build

Fixes ghcr build
This commit is contained in:
Dane Everitt 2021-04-13 08:18:30 -07:00 committed by GitHub
commit 488884fdee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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