forked from cdrx/docker-pyinstaller
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pyinstaller 6.9.0 * legacy ENV format --------- Co-authored-by: Fedor Batonogov <[email protected]>
- Loading branch information
1 parent
604d6be
commit 7d815f2
Showing
5 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"] | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
ARG PYINSTALLER_VERSION=6.8.0 | ||
ARG PYINSTALLER_VERSION=6.9.0 | ||
|
||
ENV PYPI_URL=https://pypi.python.org/ | ||
ENV PYPI_INDEX_URL=https://pypi.python.org/simple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"] | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
ARG PYINSTALLER_VERSION=6.8.0 | ||
ARG PYINSTALLER_VERSION=6.9.0 | ||
|
||
ENV PYPI_URL=https://pypi.python.org/ | ||
ENV PYPI_INDEX_URL=https://pypi.python.org/simple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"] | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
ARG PYINSTALLER_VERSION=6.8.0 | ||
ARG PYINSTALLER_VERSION=6.9.0 | ||
|
||
ENV PYPI_URL=https://pypi.python.org/ | ||
ENV PYPI_INDEX_URL=https://pypi.python.org/simple | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ FROM ubuntu:24.04 | |
|
||
LABEL maintainer="[email protected]" | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
ARG WINE_VERSION=winehq-devel | ||
ARG PYTHON_VERSION=3.12.4 | ||
ARG PYINSTALLER_VERSION=6.8.0 | ||
ARG PYINSTALLER_VERSION=6.9.0 | ||
|
||
# we need wine for this all to work, so we'll use the PPA | ||
RUN set -x \ | ||
|
@@ -35,9 +35,9 @@ RUN set -x \ | |
&& mv winetricks /usr/local/bin | ||
|
||
# wine settings | ||
ENV WINEARCH win64 | ||
ENV WINEDEBUG fixme-all | ||
ENV WINEPREFIX /wine | ||
ENV WINEARCH=win64 | ||
ENV WINEDEBUG=fixme-all | ||
ENV WINEPREFIX=/wine | ||
|
||
# PYPI repository location | ||
ENV PYPI_URL=https://pypi.python.org/ | ||
|