Skip to content

Commit 3a88399

Browse files
Scotttekton-robot
authored andcommitted
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.
1 parent 43b1b25 commit 3a88399

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

images/windows/entrypoint/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG BASE_IMAGE=mcr.microsoft.com/windows/nanoserver:1809
22

3-
FROM golang:1.16.4 AS builder
3+
FROM golang:1.16.13 AS builder
44

55
COPY . c:/gopath/src/github.com/tektoncd/pipeline
66

@@ -20,4 +20,4 @@ COPY ./.git/refs c:/ProgramData/tektoncd/pipeline/data/refs/
2020

2121
COPY ./third_party c:/ProgramData/tektoncd/pipeline/data/third-party/
2222

23-
ENTRYPOINT ["c:/ko-app/entrypoint"]
23+
ENTRYPOINT ["c:/ko-app/entrypoint"]

images/windows/nop/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG BASE_IMAGE=mcr.microsoft.com/windows/nanoserver:1809
22

3-
FROM golang:1.16.4 AS builder
3+
FROM golang:1.16.13 AS builder
44

55
COPY . c:/gopath/src/github.com/tektoncd/pipeline
66

@@ -20,4 +20,4 @@ COPY ./.git/refs c:/ProgramData/tektoncd/pipeline/data/refs/
2020

2121
COPY ./third_party c:/ProgramData/tektoncd/pipeline/data/third-party/
2222

23-
ENTRYPOINT ["c:/ko-app/nop"]
23+
ENTRYPOINT ["c:/ko-app/nop"]

0 commit comments

Comments
 (0)