We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2842c99 commit 1bfe4feCopy full SHA for 1bfe4fe
1 file changed
Dockerfile
@@ -9,7 +9,7 @@ WORKDIR C:/Program Files/Vector
9
10
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
11
12
-RUN Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/vectordotdev/vector/releases/download/v$env:VECTOR_VERSION/vector-$env:VECTOR_VERSION-x86_64-pc-windows-msvc.zip" -OutFile "vector.zip"; \
+RUN Invoke-WebRequest -UseBasicParsing -Uri "https://github.com/vectordotdev/vector/releases/download/v${VECTOR_VERSION}/vector-${VECTOR_VERSION}-x86_64-pc-windows-msvc.zip" -OutFile "vector.zip"; \
13
Expand-Archive -Path "vector.zip" -DestinationPath "."; \
14
Remove-Item "vector.zip"
15
0 commit comments