227fbeb1b7
* feat(build/windows): update windows dockerfile * feat(build/windows): update windows dockerfile * feat(build/windows): update windows dockerfile * feat(build/windows): update windows dockerfile * feat(build/windows): update windows dockerfile * feat(build/windows): update Dockerfile
16 lines
301 B
Docker
16 lines
301 B
Docker
FROM mcr.microsoft.com/windows/servercore:ltsc2019 as core
|
|
FROM mcr.microsoft.com/windows/nanoserver:1809-amd64
|
|
|
|
USER ContainerAdministrator
|
|
|
|
COPY --from=core /windows/system32/netapi32.dll /windows/system32/netapi32.dll
|
|
|
|
COPY dist /
|
|
|
|
WORKDIR /
|
|
|
|
EXPOSE 9000
|
|
EXPOSE 8000
|
|
|
|
ENTRYPOINT ["/portainer.exe"]
|