mirror of
https://github.com/dragonheim/gagent.git
synced 2025-04-25 22:48:59 -07:00
A few minor updates and attempts to clear up some lint / gosec warnings.
This commit is contained in:
parent
66970dcd25
commit
1a0455152a
10 changed files with 407 additions and 34 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.17-alpine3.14 as builder
|
||||
FROM dragonheim/golang:1.17 as builder
|
||||
ARG SEMVER
|
||||
|
||||
WORKDIR /gagent
|
||||
|
@ -12,7 +12,7 @@ RUN apk add --no-cache zeromq-dev build-base git
|
|||
RUN go build -o /gagent/bin/gagent -ldflags "-X main.semVER=${SEMVER}" cmd/gagent/main.go
|
||||
RUN strip /gagent/bin/gagent
|
||||
|
||||
FROM alpine:3.14
|
||||
FROM alpine:3.15
|
||||
ARG SEMVER
|
||||
LABEL Name="G'Agent"
|
||||
LABEL Maintainer="jwells@dragonheim.net"
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
terraform {
|
||||
required_version = ">= 1.0.9"
|
||||
required_version = ">= 1.0.11"
|
||||
required_providers {
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "~> 3.62.0"
|
||||
version = "~> 3.70.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue