Update Go version and alpine base image

* Update Go from v1.15.3 to v1.15.8
* Update alpine base from v3.12 to v3.13
This commit is contained in:
Dalton Hubble
2021-02-07 22:29:03 -08:00
parent b0e69b494e
commit d40d895ab5

View File

@@ -1,8 +1,8 @@
FROM docker.io/golang:1.15.3 AS builder
FROM docker.io/golang:1.15.8 AS builder
COPY . src
RUN cd src && make build
FROM docker.io/alpine:3.12
FROM docker.io/alpine:3.13
LABEL maintainer="Dalton Hubble <dghubble@gmail.com>"
COPY --from=builder /go/src/bin/matchbox /matchbox
EXPOSE 8080