Skip to content

Commit 1bfe4fe

Browse files
committed
fix: simplify further
1 parent 2842c99 commit 1bfe4fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ WORKDIR C:/Program Files/Vector
99

1010
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
1111

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"; \
12+
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"; \
1313
Expand-Archive -Path "vector.zip" -DestinationPath "."; \
1414
Remove-Item "vector.zip"
1515

0 commit comments

Comments
 (0)