.drone.yaml | ||
Dockerfile | ||
LICENSE | ||
README.md |
wine python windows builder
Python for windows container.
usage
example .drone.yaml
:
kind: pipeline
type: docker
name: default
steps:
- name: build
image: docker.asperti.com/paspo/python-windows-builder
pull: always
commands:
# add dependancy
- wine c:/python/python.exe -m pip install cryptography
# prepare output directory
- mkdir -p /drone/src/out/
# build
- wine c:/python/Scripts/pyinstaller.exe --onefile --distpath z:/drone/src/out z:/drone/src/prepara_xml.py