Golang alpine update (#2562)

* Bumping golang image to 1.19.2 running alpine 3.16.2

* Use latest atlantis-base with latest alpine patches
This commit is contained in:
Markus Liljedahl
2022-10-07 00:13:25 +02:00
committed by GitHub
parent b7aa71c06d
commit 93dd161517

View File

@@ -1,5 +1,5 @@
# Stage 1: build artifact
FROM golang:1.19.1-alpine AS builder
FROM golang:1.19.2-alpine AS builder
WORKDIR /app
COPY . /app
@@ -7,7 +7,7 @@ RUN CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -v -o atlantis .
# Stage 2
# The runatlantis/atlantis-base is created by docker-base/Dockerfile.
FROM ghcr.io/runatlantis/atlantis-base:2022.09.08 AS base
FROM ghcr.io/runatlantis/atlantis-base:2022.10.06 AS base
# Get the architecture the image is being built for
ARG TARGETPLATFORM