mirror of
https://github.com/drone-plugins/drone-docker.git
synced 2026-06-04 10:15:30 +08:00
58bfad7a29
* Add signing support via cosign * Updated docker.go * Add signing support via cosign * Updated docker.go * Updated docker.go * Updated docker.go * Updated docker.go * Updated docker.go * Updated dockerfiles
35 lines
1.5 KiB
Docker
35 lines
1.5 KiB
Docker
# escape=`
|
|
# using 1809-KB5021237-amd64 as base image, 1809-KB5022286-amd64 does not work
|
|
FROM mcr.microsoft.com/windows/servercore:1809-KB5021237 as download
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
|
|
ENV DOCKER_VERSION 19.03.1
|
|
|
|
RUN Invoke-WebRequest 'http://constexpr.org/innoextract/files/innoextract-1.6-windows.zip' -OutFile 'innoextract.zip' -UseBasicParsing ; `
|
|
Expand-Archive innoextract.zip -DestinationPath C:\ ; `
|
|
Remove-Item -Path innoextract.zip
|
|
|
|
RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; `
|
|
Invoke-WebRequest $('https://github.com/docker/toolbox/releases/download/v{0}/DockerToolbox-{0}.exe' -f $env:DOCKER_VERSION) -OutFile 'dockertoolbox.exe' -UseBasicParsing
|
|
RUN /innoextract.exe dockertoolbox.exe
|
|
|
|
FROM mcr.microsoft.com/windows/nanoserver:1809-KB5021237-amd64
|
|
|
|
USER ContainerAdministrator
|
|
|
|
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
|
|
org.label-schema.name="Drone Docker" `
|
|
org.label-schema.vendor="Drone.IO Community" `
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
RUN mkdir C:\bin
|
|
|
|
# Install cosign for container image signing
|
|
ADD https://github.com/sigstore/cosign/releases/download/v2.5.3/cosign-windows-amd64.exe C:/bin/cosign.exe
|
|
|
|
COPY --from=download /windows/system32/netapi32.dll /windows/system32/netapi32.dll
|
|
COPY --from=download /app/docker.exe C:/bin/docker.exe
|
|
ADD release/windows/amd64/drone-docker.exe C:/bin/drone-docker.exe
|
|
ENTRYPOINT [ "C:\\bin\\drone-docker.exe" ]
|