diff --git a/Dockerfile b/Dockerfile index d32495c45..ed5143afc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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