mirror of
https://github.com/drone-plugins/drone-pypi.git
synced 2026-06-04 18:24:00 +08:00
13 lines
377 B
Docker
13 lines
377 B
Docker
# escape=`
|
|
FROM plugins/base:windows-1803
|
|
|
|
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
|
|
org.label-schema.name="Drone PyPi" `
|
|
org.label-schema.vendor="Drone.IO Community" `
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
# TODO: install required tools
|
|
|
|
ADD release/windows/amd64/drone-pypi.exe C:/bin/drone-pypi.exe
|
|
ENTRYPOINT [ "C:\\bin\\drone-pypi.exe" ]
|