Skip to content

Commit

Permalink
Update Dockerfiles using golang images to Go 1.16.13
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Scott authored and tekton-robot committed Jan 27, 2022
1 parent c336ba4 commit 13623a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions images/windows/entrypoint/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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"]
ENTRYPOINT ["c:/ko-app/entrypoint"]
4 changes: 2 additions & 2 deletions images/windows/nop/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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"]
ENTRYPOINT ["c:/ko-app/nop"]

0 comments on commit 13623a4

Please sign in to comment.