Skip to content

Pyinstaller pattern #411

Description

@andyneff

The current pyinstaller pattern is not going to work. Trying to follow similar patterns such as make self will not result in a useful portable pyinstaller executable, because it can rely on the python in a docker image, which itself, will not be portable.

Using a dedicated default image for pyinstaller, will not work, because there is too much potential for it to be incompatible with the running image for a project, so this will not solve anything else.

The correct solution would be to add docker command to the end of a docker image, to say, install a potable version of python (using anaconda again). This should be relatively straight forward, using

ARG OS
FROM ${OS}
... check python version, install miniconda closest to it
... setup pyinstaller 

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions