diff --git a/docker/Dockerfile.windows.amd64 b/docker/Dockerfile.windows.amd64 index 98c6181..b9a11ab 100644 --- a/docker/Dockerfile.windows.amd64 +++ b/docker/Dockerfile.windows.amd64 @@ -11,12 +11,12 @@ ENV chocolateyVersion=1.4.0 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) +RUN set-ExecutionPolicy RemoteSigned -Scope CurrentUser RUN choco install -y kubernetes-helm -RUN choco install git.install -y -COPY ./main.sh /app/ +COPY ./main.sh ./ # ENTRYPOINT ["python", "C:\\app\\main.py"] # CMD ["C:\\Program Files\\Git\\bin\\bash.exe", "-c", "./main.sh"] -ENTRYPOINT ["C:\\Program Files\\Git\\bin\\bash.exe", "-c", "./main.sh"] \ No newline at end of file +ENTRYPOINT [ "./main.sh" ] \ No newline at end of file