Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ci/Dockerfile-envoy-windows
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ ARG BUILD_TAG=ltsc2019

FROM $BUILD_OS:$BUILD_TAG

USER ContainerAdministrator
RUN net user /add "EnvoyUser"
RUN net localgroup "Network Configuration Operators" "EnvoyUser" /add

RUN mkdir "C:\\Program\ Files\\envoy"
RUN setx path "%path%;c:\Program Files\envoy"
RUN setx /M path "%path%;c:\Program Files\envoy"
ADD ["windows/amd64/envoy.exe", "C:/Program Files/envoy/"]

RUN mkdir "C:\\ProgramData\\envoy"
Expand Down