fix: updating Go & Alpine versions

This commit is contained in:
James Wells 2021-08-06 16:10:01 -07:00
parent 0b3e575331
commit 7924ed5962
Signed by: jwells
GPG key ID: 73196D10B8E65666
5 changed files with 12 additions and 7 deletions

View file

@ -1,4 +1,4 @@
FROM golang:1.16-alpine3.12 as builder
FROM golang:1.16-alpine3.13 as builder
WORKDIR /gagent
COPY . .
@ -12,7 +12,7 @@ RUN go build -o /gagent/bin/gagent gagent/main.go
RUN strip /gagent/bin/gagent
FROM alpine:3.12
FROM alpine:3.13
LABEL Name="G'Agent"
LABEL Maintainer="jwells@dragonheim.net"
LABEL License="MIT License"