14 lines
371 B
Docker
14 lines
371 B
Docker
ARG OSVERSION
|
|
FROM --platform=linux/amd64 gcr.io/k8s-staging-e2e-test-images/windows-servercore-cache:1.0-linux-amd64-${OSVERSION} as core
|
|
FROM mcr.microsoft.com/windows/nanoserver:${OSVERSION}
|
|
|
|
COPY --from=core /Windows/System32/netapi32.dll /Windows/System32/netapi32.dll
|
|
|
|
USER ContainerAdministrator
|
|
|
|
COPY dist /
|
|
|
|
EXPOSE 9000
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["/portainer.exe"] |