Skip to content

Commit

Permalink
Merge pull request #111 from jingxu97/cptest
Browse files Browse the repository at this point in the history
Cherry-pick of 108: Update image and tag parameter for Dockerfile.Windows
  • Loading branch information
k8s-ci-robot authored Sep 3, 2020
2 parents 74cddc9 + f2eca70 commit 644570e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile.Windows
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
ARG BASE_IMAGE=servercore
ARG BASE_IMAGE_TAG=1809
ARG CORE_IMAGE=servercore
ARG CORE_IMAGE_TAG=1809
ARG BUILD_IMAGE=nanoserver
ARG BUILD_IMAGE_TAG=1809
ARG REGISTRY=mcr.microsoft.com/windows

FROM ${REGISTRY}/${BASE_IMAGE}:${BASE_IMAGE_TAG} as core
FROM mcr.microsoft.com/windows/nanoserver:${BASE_IMAGE_TAG}
FROM ${REGISTRY}/${CORE_IMAGE}:${CORE_IMAGE_TAG} as core
FROM ${REGISTRY}/${BUILD_IMAGE}:${BUILD_IMAGE_TAG}
LABEL description="CSI Node driver registrar"

COPY ./bin/csi-node-driver-registrar.exe /csi-node-driver-registrar.exe
Expand Down

0 comments on commit 644570e

Please sign in to comment.