From 71e6baad955e0e4470d38c2341680a447f2b0d96 Mon Sep 17 00:00:00 2001 From: Lukas SP Date: Fri, 28 Aug 2020 19:56:26 +0200 Subject: [PATCH] Add GCC to Dockerfile (cgo) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index da86034..d858532 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Build the application FROM golang:1.15-alpine AS build RUN apk update && apk upgrade && \ - apk add --no-cache bash git openssh + apk add --no-cache bash git openssh build-base WORKDIR /app COPY go.mod go.sum ./ RUN go mod download