build: Bump build image

This commit is contained in:
Martin Polden 2021-01-24 15:07:45 +01:00
parent 711ea5377d
commit 8374778df8
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
# Build
FROM golang:1.13-buster AS build
FROM golang:1.15-buster AS build
WORKDIR /go/src/github.com/mpolden/echoip
COPY . .
# Must build without cgo because libc is unavailable in runtime image
ENV GO111MODULE=on CGO_ENABLED=0
RUN make