Loading Dockerfile-py3-linux +2 −6 Original line number Diff line number Diff line Loading @@ -3,18 +3,14 @@ SHELL ["/bin/bash", "-i", "-c"] LABEL maintainer="f.batonogov@yandex.ru" ARG PYINSTALLER_VERSION=5.12.0 ARG PYINSTALLER_VERSION=5.13.0 ENV PYPI_URL=https://pypi.python.org/ ENV PYPI_INDEX_URL=https://pypi.python.org/simple COPY entrypoint-linux.sh /entrypoint.sh RUN apt update \ && apt install -y --no-install-recommends \ upx \ && pip3 install pyinstaller==$PYINSTALLER_VERSION \ && mkdir /src/ \ RUN pip3 install pyinstaller==$PYINSTALLER_VERSION \ && chmod +x /entrypoint.sh VOLUME /src/ Loading Dockerfile-py3-windows +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND noninteractive ARG WINE_VERSION=winehq-stable ARG PYTHON_VERSION=3.11.4 ARG PYINSTALLER_VERSION=5.12.0 ARG PYINSTALLER_VERSION=5.13.0 # we need wine for this all to work, so we'll use the PPA RUN set -x \ Loading README.md +3 −2 Original line number Diff line number Diff line Loading @@ -8,7 +8,8 @@ | TAG | Python version | Pyinstaller version | | ---------------------- | -------------- | ------------------- | | `:latest`/`:3.1.2` | 3.11.4 | 5.12.0 | | `:latest`/`:3.1.4` | 3.11.4 | 5.13.0 | | `:3.1.3` | 3.11.4 | 5.12.0 | | `:3.1.1` | 3.11.3 | 5.11.0 | | `:3.1.0` | 3.11.3 | 5.9.0 | | `:python-3.11`/`:3.0.2`| 3.11.2 | 5.8.0 | Loading Loading @@ -57,7 +58,7 @@ will generate a `spec` file for `your-script.py` in your current working directo ### How do I change the PyInstaller version used? Add `pyinstaller==5.11.0` to your `requirements.txt`. Add `pyinstaller==5.12.0` to your `requirements.txt`. ### Is it possible to use a package mirror? Loading Loading
Dockerfile-py3-linux +2 −6 Original line number Diff line number Diff line Loading @@ -3,18 +3,14 @@ SHELL ["/bin/bash", "-i", "-c"] LABEL maintainer="f.batonogov@yandex.ru" ARG PYINSTALLER_VERSION=5.12.0 ARG PYINSTALLER_VERSION=5.13.0 ENV PYPI_URL=https://pypi.python.org/ ENV PYPI_INDEX_URL=https://pypi.python.org/simple COPY entrypoint-linux.sh /entrypoint.sh RUN apt update \ && apt install -y --no-install-recommends \ upx \ && pip3 install pyinstaller==$PYINSTALLER_VERSION \ && mkdir /src/ \ RUN pip3 install pyinstaller==$PYINSTALLER_VERSION \ && chmod +x /entrypoint.sh VOLUME /src/ Loading
Dockerfile-py3-windows +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND noninteractive ARG WINE_VERSION=winehq-stable ARG PYTHON_VERSION=3.11.4 ARG PYINSTALLER_VERSION=5.12.0 ARG PYINSTALLER_VERSION=5.13.0 # we need wine for this all to work, so we'll use the PPA RUN set -x \ Loading
README.md +3 −2 Original line number Diff line number Diff line Loading @@ -8,7 +8,8 @@ | TAG | Python version | Pyinstaller version | | ---------------------- | -------------- | ------------------- | | `:latest`/`:3.1.2` | 3.11.4 | 5.12.0 | | `:latest`/`:3.1.4` | 3.11.4 | 5.13.0 | | `:3.1.3` | 3.11.4 | 5.12.0 | | `:3.1.1` | 3.11.3 | 5.11.0 | | `:3.1.0` | 3.11.3 | 5.9.0 | | `:python-3.11`/`:3.0.2`| 3.11.2 | 5.8.0 | Loading Loading @@ -57,7 +58,7 @@ will generate a `spec` file for `your-script.py` in your current working directo ### How do I change the PyInstaller version used? Add `pyinstaller==5.11.0` to your `requirements.txt`. Add `pyinstaller==5.12.0` to your `requirements.txt`. ### Is it possible to use a package mirror? Loading