Skip to content

Commit b148e2a

Browse files
committed
chore: address comments
1 parent 8142737 commit b148e2a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.pipelines/build/dockerfiles/cni.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ARG ARCH
44

55
# mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image:v1.0.0
6-
FROM --platform=windows/${ARCH} mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image@sha256:b4c9637e032f667c52d1eccfa31ad8c63f1b035e8639f3f48a510536bf34032b as windows
6+
FROM --platform=windows/${ARCH} mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image@sha256:b4c9637e032f667c52d1eccfa31ad8c63f1b035e8639f3f48a510536bf34032b AS windows
77
ARG ARTIFACT_DIR .
88

99
COPY ${ARTIFACT_DIR}/bin/dropgz.exe /dropgz.exe

.pipelines/build/dockerfiles/cns.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ARG ARCH
44

55
# mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image:v1.0.0
6-
FROM --platform=windows/${ARCH} mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image@sha256:b4c9637e032f667c52d1eccfa31ad8c63f1b035e8639f3f48a510536bf34032b as windows
6+
FROM --platform=windows/${ARCH} mcr.microsoft.com/oss/kubernetes/windows-host-process-containers-base-image@sha256:b4c9637e032f667c52d1eccfa31ad8c63f1b035e8639f3f48a510536bf34032b AS windows
77
ARG ARTIFACT_DIR .
88

99
COPY ${ARTIFACT_DIR}/files/kubeconfigtemplate.yaml kubeconfigtemplate.yaml

build/images.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ export RENDER_MSG ?= "!! AUTOGENERATED - DO NOT EDIT !!"
1515
export SRC ?= ${PATH}/Dockerfile.tmpl
1616
export DEST ?= ${PATH}/Dockerfile
1717

18-
export PIPE-PATH ?= .pipelines/build/dockerfiles
19-
export SRC_PIPE ?= ${PIPE-PATH}/${PATH}.Dockerfile.tmpl
20-
export DEST-PIPE ?= ${PIPE-PATH}/${PATH}.Dockerfile
18+
export PIPE_PATH ?= .pipelines/build/dockerfiles
19+
export SRC_PIPE ?= ${PIPE_PATH}/${PATH}.Dockerfile.tmpl
20+
export DEST_PIPE ?= ${PIPE_PATH}/${PATH}.Dockerfile
2121

2222
print:
2323
@echo ${GO_PIN}
@@ -27,4 +27,4 @@ print:
2727

2828
render:
2929
build/tools/bin/renderkit -f ${SRC} --ds env:// > ${DEST}
30-
build/tools/bin/renderkit -f ${SRC_PIPE} --ds env:// > ${DEST-PIPE}
30+
build/tools/bin/renderkit -f ${SRC_PIPE} --ds env:// > ${DEST_PIPE}

0 commit comments

Comments
 (0)