ppolxda / docker_pyinstaller

docker_pyinstaller

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyInstaller Docker Images

Use non-root Docker containers to ease compiling Python applications to binaries / exe files.

ppolxda/pynstaller-linux

Usage

docker run --rm -v "$(pwd):/src/" ppolxda/pyinstaller-linux
docker run --rm -v "$(pwd):/src/" --entrypoint /bin/sh ppolxda/pyinstaller-linux -c "apt-get update -y && apt-get install -y wget && /entrypoint.sh"
docker run --rm -v "$(pwd):/src/" ppolxda/pyinstaller-linux "pyinstaller your-script.py"

Build

docker build --rm --tag=ppolxda/pyinstaller-linux .
docker build --rm --tag=ppolxda/pyinstaller-linux --build-arg PYPI_INDEX_URL_ARG=https://pypi.douban.com/simple/ . 

About

docker_pyinstaller

License:MIT License


Languages

Language:Dockerfile 69.2%Language:Shell 30.8%