docker-pyinstaller
docker-pyinstaller copied to clipboard
Add build.sh script and more base image variations
I need a xenial based image for cdrx/pyinstaller-linux
, for a native module to compile properly (jsonnet). So I made those changes to add more base image variations on this project.
For now, I have written a build.sh
script to build all images with the tags I expect to find on docker hub. I hope those tags could be added to the automated build too :)
It also contains a new DISABLE_REQUIREMENTS
environment variable to avoid entrypoint "pip install -r requirements.txt". In my use case, I need to install a pre-build wheel package before invoking requirements installation, as my windows build won't compile the jsonnet module (So I have to install it before from a prebuilt wheel).
@Toilal Do you happen to know if adding git to the Wine server is possible? My requirements.txt file contains a reference to git which is causing it to fail when compiling an executable for Windows, as the Wine server does not have git installed.
Example in requirements.txt
git+https://github.com/jtgrassie/pyrx.git#egg=pyrx
@Toilal Do you happen to know if adding git to the Wine server is possible? My requirements.txt file contains a reference to git which is causing it to fail when compiling an executable for Windows, as the Wine server does not have git installed.
Example in requirements.txt
git+https://github.com/jtgrassie/pyrx.git#egg=pyrx
Don't use git and replace the requirements with a link to the zip archive, available on the github "Download sources" button => https://github.com/jtgrassie/pyrx/archive/master.zip#egg=pyrx
@cdrx could you have a look to this pull request ?
@cdrx , sorry if it sounds like spam, but could you have a look to this pull request ? Do you still maintain this repository ?
Those images are now available on docker hub, under toilal/pyinstaller-linux and toilal/pyinstaller-windows repositories.