Skip to content

Commit 4aa80f6

Browse files
committed
Automatically upgrade setuptools and wheel on build
1 parent 7a24814 commit 4aa80f6

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN ldconfig
3636
RUN \
3737
echo "[*] apt update" && \
3838
apt -qq update && \
39-
echo "[*] apt isntall" && \
39+
echo "[*] apt install" && \
4040
apt -qq install -y \
4141
libc6 \
4242
# needed for pip
@@ -47,6 +47,7 @@ RUN \
4747

4848
RUN python -m pip --version
4949
RUN python -m pip install pip --upgrade
50+
RUN python -m pip install setuptools wheel --upgrade
5051

5152
# store Python Version; used for image tagging
5253
# ARG needs to be declared here, and above any FROM line

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ your `Dockerfile`):
1818

1919
# ... and the rest
2020

21-
**This packages Python 3.9.**
21+
**This packages Python 3.11.**
2222

2323
You also probably want to set the UID and GID (*User ID* number and *Group ID*
2424
number). This can be done through the environmental variables `PUID` and `GUID`

0 commit comments

Comments
 (0)