refactor: Upgrading Go to 1.17, Alpine to 3.14, and Terraform to 1.0.5. Also adding preliminary vulnerability report.

This commit is contained in:
James Wells 2021-08-30 07:29:19 -07:00
parent 610ae5eed4
commit b2e5795aed
Signed by: jwells
GPG key ID: 73196D10B8E65666
6 changed files with 100 additions and 77 deletions

View file

@ -1,4 +1,4 @@
FROM golang:1.16-alpine3.14 as builder
FROM golang:1.17-alpine3.14 as builder
WORKDIR /gagent
COPY . .
@ -11,7 +11,6 @@ RUN apk add --no-cache zeromq-dev build-base git
RUN go build -o /gagent/bin/gagent gagent/main.go
RUN strip /gagent/bin/gagent
FROM alpine:3.14
LABEL Name="G'Agent"
LABEL Maintainer="jwells@dragonheim.net"