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