Skip to content
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

Install the right tools with winetricks #14

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b7cc3dc
Update Readme
batonogov Jan 24, 2023
ef5989f
Update CI (#9)
batonogov Jan 29, 2023
9787a65
Update CI
batonogov Jan 31, 2023
3b023ee
Update readme files
batonogov Jan 31, 2023
3fd7eb7
Update python
batonogov Feb 9, 2023
55dd7b0
Updated Ubuntu 20.04 -> 22.04 for windows
batonogov Feb 9, 2023
13e0e95
Updated Pyintaller
batonogov Feb 11, 2023
836039b
Update readme
batonogov Feb 12, 2023
a03d764
Update readme
batonogov Feb 12, 2023
c710426
Update README
batonogov Feb 13, 2023
7bcec4e
Update LICENSE file
batonogov Feb 13, 2023
6ad2ab7
Update README file
batonogov Feb 13, 2023
8cfd5ec
Added release date
batonogov Feb 13, 2023
2cb2a66
Merge branch 'main' into dev
batonogov Feb 13, 2023
de19c93
New linux dockerfile (#12)
batonogov Feb 27, 2023
27a67f3
Pyinstaller 5.8.0 -> 5.9.0
batonogov Mar 18, 2023
0525160
Added upcoming release info
batonogov Mar 18, 2023
370f4f5
Syntax editing
batonogov Mar 18, 2023
9791cc1
Resolved conflicts
batonogov Mar 18, 2023
5d6c6e8
Update readme
batonogov Mar 19, 2023
0f25732
Updated python
batonogov Apr 8, 2023
1612f5d
Update readme
batonogov Apr 8, 2023
6f29ab4
Update readme file
batonogov Apr 8, 2023
a816e36
Merge branch 'main' into dev
batonogov Apr 8, 2023
b3b4cf5
Test vcrun2015 install
batonogov Apr 8, 2023
58df2af
Updated Pyinstaller 5.9.0 -> 5.10.1
batonogov May 6, 2023
88d1236
Merge branch 'dev' into issues11
batonogov May 6, 2023
0483499
Pyinstaller 5.10.1 -> 5.11.0 (#17)
batonogov May 16, 2023
b1c89cc
Merge branch 'dev' into issues11
batonogov May 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile-py3-linux
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-i", "-c"]

LABEL maintainer="f.batonogov@yandex.ru"

ARG PYINSTALLER_VERSION=5.9.0
ARG PYINSTALLER_VERSION=5.11.0

ENV PYPI_URL=https://pypi.python.org/
ENV PYPI_INDEX_URL=https://pypi.python.org/simple
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile-py3-windows
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV DEBIAN_FRONTEND noninteractive

ARG WINE_VERSION=winehq-stable
ARG PYTHON_VERSION=3.11.3
ARG PYINSTALLER_VERSION=5.9.0
ARG PYINSTALLER_VERSION=5.11.0

# we need wine for this all to work, so we'll use the PPA
RUN set -x \
Expand All @@ -33,6 +33,9 @@ ENV PYPI_URL=https://pypi.python.org/
# PYPI index location
ENV PYPI_INDEX_URL=https://pypi.python.org/simple

# Test vcrun2015 install
RUN winetricks -q vcrun2015

# install python in wine, using the msi packages to install, extracting
# the files directly, since installing isn't running correctly.
RUN set -x \
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

| TAG | Python version | Pyinstaller version |
| ---------------------- | -------------- | ------------------- |
| `:latest`/`:3.1.0` | 3.11.3 | 5.9.0 |
| `:latest`/`: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 |
| `:3.0.1` | 3.11.1 | 5.7.0 |
| `:python-3.10` | 3.10.10 | 5.7.0 |
Expand Down Expand Up @@ -67,10 +68,13 @@ Yes, by supplying the `PYPI_URL` and `PYPI_INDEX_URL` environment variables that

## History

### 2023

Now release information will be [here](https://github.com/batonogov/docker-pyinstaller/releases).

Release History

<details>
<summary>2023</summary>

### [3.1.0] - 08.04.2023

- Linux container now uses Python base image
Expand All @@ -94,6 +98,8 @@ Now release information will be [here](https://github.com/batonogov/docker-pyins
- Updated Pyintaller 5.5.0 -> 5.7.0
- Updated Python 3.10.8 -> 3.11.1

</details>

<details>
<summary>2022</summary>

Expand Down
Loading