Add curl to builder container

This commit is contained in:
Caleb Xavier Berger 2021-01-18 23:57:37 -05:00
parent cc46934d38
commit 321abc4071

View file

@ -1,7 +1,7 @@
FROM docker.io/golang:alpine AS builder
ARG GOARCH=amd64
RUN apk --update --no-cache add bash build-base
RUN apk --update --no-cache add bash build-base curl
WORKDIR /build