-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Dockerfile with Python 3.8 and pyinstaller 4.0.0 #102
Open
gmatheu
wants to merge
2
commits into
cdrx:master
Choose a base branch
from
gmatheu:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
FROM ubuntu:16.04 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
ARG WINE_VERSION=winehq-staging | ||
ARG PYTHON_VERSION=3.8.5 | ||
ARG PYINSTALLER_VERSION=4.0 | ||
|
||
# we need wine for this all to work, so we'll use the PPA | ||
RUN set -x \ | ||
&& dpkg --add-architecture i386 \ | ||
&& apt-get update -qy \ | ||
&& apt-get install --no-install-recommends -qfy apt-transport-https software-properties-common wget \ | ||
&& wget -nv https://dl.winehq.org/wine-builds/winehq.key \ | ||
&& apt-key add winehq.key \ | ||
&& add-apt-repository 'https://dl.winehq.org/wine-builds/ubuntu/' \ | ||
&& apt-get update -qy \ | ||
&& apt-get install --no-install-recommends -qfy $WINE_VERSION winbind cabextract \ | ||
&& apt-get clean \ | ||
&& wget -nv https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \ | ||
&& chmod +x winetricks \ | ||
&& mv winetricks /usr/local/bin | ||
|
||
# wine settings | ||
ENV WINEARCH win64 | ||
ENV WINEDEBUG fixme-all | ||
ENV WINEPREFIX /wine | ||
|
||
# PYPI repository location | ||
ENV PYPI_URL=https://pypi.python.org/ | ||
# PYPI index location | ||
ENV PYPI_INDEX_URL=https://pypi.python.org/simple | ||
|
||
# install python in wine, using the msi packages to install, extracting | ||
# the files directly, since installing isn't running correctly. | ||
RUN set -x \ | ||
&& winetricks win7 \ | ||
&& for msifile in `echo core dev exe lib path pip tcltk tools`; do \ | ||
wget -nv "https://www.python.org/ftp/python/$PYTHON_VERSION/amd64/${msifile}.msi"; \ | ||
wine msiexec /i "${msifile}.msi" /qb TARGETDIR=C:/Python38; \ | ||
rm ${msifile}.msi; \ | ||
done \ | ||
&& cd /wine/drive_c/Python38 \ | ||
&& echo 'wine '\''C:\Python38\python.exe'\'' "$@"' > /usr/bin/python \ | ||
&& echo 'wine '\''C:\Python38\Scripts\easy_install.exe'\'' "$@"' > /usr/bin/easy_install \ | ||
&& echo 'wine '\''C:\Python38\Scripts\pip.exe'\'' "$@"' > /usr/bin/pip \ | ||
&& echo 'wine '\''C:\Python38\Scripts\pyinstaller.exe'\'' "$@"' > /usr/bin/pyinstaller \ | ||
&& echo 'wine '\''C:\Python38\Scripts\pyupdater.exe'\'' "$@"' > /usr/bin/pyupdater \ | ||
&& echo 'assoc .py=PythonScript' | wine cmd \ | ||
&& echo 'ftype PythonScript=c:\Python37\python.exe "%1" %*' | wine cmd \ | ||
&& while pgrep wineserver >/dev/null; do echo "Waiting for wineserver"; sleep 1; done \ | ||
&& chmod +x /usr/bin/python /usr/bin/easy_install /usr/bin/pip /usr/bin/pyinstaller /usr/bin/pyupdater \ | ||
&& (pip install -U pip || true) \ | ||
&& rm -rf /tmp/.wine-* | ||
|
||
ENV W_DRIVE_C=/wine/drive_c | ||
ENV W_WINDIR_UNIX="$W_DRIVE_C/windows" | ||
ENV W_SYSTEM64_DLLS="$W_WINDIR_UNIX/system32" | ||
ENV W_TMP="$W_DRIVE_C/windows/temp/_$0" | ||
|
||
# install Microsoft Visual C++ Redistributable for Visual Studio 2017 dll files | ||
RUN set -x \ | ||
&& rm -f "$W_TMP"/* \ | ||
&& wget -P "$W_TMP" https://download.visualstudio.microsoft.com/download/pr/11100230/15ccb3f02745c7b206ad10373cbca89b/VC_redist.x64.exe \ | ||
&& cabextract -q --directory="$W_TMP" "$W_TMP"/VC_redist.x64.exe \ | ||
&& cabextract -q --directory="$W_TMP" "$W_TMP/a10" \ | ||
&& cabextract -q --directory="$W_TMP" "$W_TMP/a11" \ | ||
&& cd "$W_TMP" \ | ||
&& rename 's/_/\-/g' *.dll \ | ||
&& cp "$W_TMP"/*.dll "$W_SYSTEM64_DLLS"/ | ||
|
||
# install pyinstaller | ||
RUN /usr/bin/pip install pyinstaller==$PYINSTALLER_VERSION | ||
|
||
# put the src folder inside wine | ||
RUN mkdir /src/ && ln -s /src /wine/drive_c/src | ||
VOLUME /src/ | ||
WORKDIR /wine/drive_c/src/ | ||
RUN mkdir -p /wine/drive_c/tmp | ||
|
||
COPY entrypoint-windows.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
winehq-stable and it will pass