From 7d74f4603f90b1fb211eed9b29b0688b202f34f5 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 26 Jan 2022 15:32:47 -0500 Subject: [PATCH] Update Dockerfiles using golang images to Go 1.16.13 Prior to this commit the Dockerfiles for windows images relied on an older version of the official golang images. This PR updates the windows images to use Go 1.16.13. --- images/windows/entrypoint/Dockerfile | 4 ++-- images/windows/nop/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/images/windows/entrypoint/Dockerfile b/images/windows/entrypoint/Dockerfile index 365f1c10429..1938a116236 100644 --- a/images/windows/entrypoint/Dockerfile +++ b/images/windows/entrypoint/Dockerfile @@ -1,6 +1,6 @@ ARG BASE_IMAGE=mcr.microsoft.com/windows/nanoserver:1809 -FROM golang:1.16.4 AS builder +FROM golang:1.16.13 AS builder COPY . c:/gopath/src/github.com/tektoncd/pipeline @@ -20,4 +20,4 @@ COPY ./.git/refs c:/ProgramData/tektoncd/pipeline/data/refs/ COPY ./third_party c:/ProgramData/tektoncd/pipeline/data/third-party/ -ENTRYPOINT ["c:/ko-app/entrypoint"] \ No newline at end of file +ENTRYPOINT ["c:/ko-app/entrypoint"] diff --git a/images/windows/nop/Dockerfile b/images/windows/nop/Dockerfile index 9b35ed8aa1c..96c5ed32a8d 100644 --- a/images/windows/nop/Dockerfile +++ b/images/windows/nop/Dockerfile @@ -1,6 +1,6 @@ ARG BASE_IMAGE=mcr.microsoft.com/windows/nanoserver:1809 -FROM golang:1.16.4 AS builder +FROM golang:1.16.13 AS builder COPY . c:/gopath/src/github.com/tektoncd/pipeline @@ -20,4 +20,4 @@ COPY ./.git/refs c:/ProgramData/tektoncd/pipeline/data/refs/ COPY ./third_party c:/ProgramData/tektoncd/pipeline/data/third-party/ -ENTRYPOINT ["c:/ko-app/nop"] \ No newline at end of file +ENTRYPOINT ["c:/ko-app/nop"]