dockerfiles-windows icon indicating copy to clipboard operation
dockerfiles-windows copied to clipboard

kubectl image

Open mweibel opened this issue 1 year ago • 0 comments

hi,

I came across this repo today. Would you be interested in including a kubectl image? I did not find a windows image with kubectl included and had to build that just this morning:

FROM mcr.microsoft.com/windows/servercore:ltsc2019

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

WORKDIR C:/

RUN curl -o kubectl.exe "https://dl.k8s.io/release/v1.24.0/bin/windows/amd64/kubectl.exe"

ENTRYPOINT ["powershell"]

mweibel avatar Oct 07 '22 08:10 mweibel