Use drive letters consistently

This commit is contained in:
Don
2019-01-25 09:45:05 -08:00
parent 120230dbd9
commit 8b07050495
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -8,8 +8,8 @@ LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
ENV MANIFEST_TOOL_VERSION 0.9.0
RUN New-Item -ItemType directory -Path 'c:/bin'; `
Invoke-WebRequest ('https://github.com/estesp/manifest-tool/releases/download/v{0}/manifest-tool-windows-amd64.exe' -f $env:MANIFEST_TOOL_VERSION) -OutFile 'c:/bin/manifest-tool.exe';
RUN New-Item -ItemType directory -Path 'C:/bin'; `
Invoke-WebRequest ('https://github.com/estesp/manifest-tool/releases/download/v{0}/manifest-tool-windows-amd64.exe' -f $env:MANIFEST_TOOL_VERSION) -OutFile 'C:/bin/manifest-tool.exe';
ADD release/windows/amd64/drone-manifest.exe c:/bin/drone-manifest.exe
ENTRYPOINT [ "c:\\bin\\drone-manifest.exe" ]
ADD release/windows/amd64/drone-manifest.exe C:/bin/drone-manifest.exe
ENTRYPOINT [ "C:\\bin\\drone-manifest.exe" ]
+4 -4
View File
@@ -8,8 +8,8 @@ LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
ENV MANIFEST_TOOL_VERSION 0.9.0
RUN New-Item -ItemType directory -Path 'c:/bin'; `
Invoke-WebRequest ('https://github.com/estesp/manifest-tool/releases/download/v{0}/manifest-tool-windows-amd64.exe' -f $env:MANIFEST_TOOL_VERSION) -OutFile 'c:/bin/manifest-tool.exe';
RUN New-Item -ItemType directory -Path 'C:/bin'; `
Invoke-WebRequest ('https://github.com/estesp/manifest-tool/releases/download/v{0}/manifest-tool-windows-amd64.exe' -f $env:MANIFEST_TOOL_VERSION) -OutFile 'C:/bin/manifest-tool.exe';
ADD release/windows/amd64/drone-manifest.exe c:/bin/drone-manifest.exe
ENTRYPOINT [ "c:\\bin\\drone-manifest.exe" ]
ADD release/windows/amd64/drone-manifest.exe C:/bin/drone-manifest.exe
ENTRYPOINT [ "C:\\bin\\drone-manifest.exe" ]