Skip to content

Commit b4cb5c4

Browse files
authored
Merge pull request #22 from JayH5/update-pip
Update pip using update.sh
2 parents b7492bc + a332c67 commit b4cb5c4

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
ENV PYPY_VERSION 6.0.0
1717

1818
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
19-
ENV PYTHON_PIP_VERSION 9.0.1
19+
ENV PYTHON_PIP_VERSION 10.0.1
2020

2121
RUN set -ex; \
2222
\

2/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1818
ENV PYPY_VERSION 6.0.0
1919

2020
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
21-
ENV PYTHON_PIP_VERSION 9.0.1
21+
ENV PYTHON_PIP_VERSION 10.0.1
2222

2323
RUN set -ex; \
2424
\

3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
ENV PYPY_VERSION 6.0.0
1717

1818
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
19-
ENV PYTHON_PIP_VERSION 9.0.1
19+
ENV PYTHON_PIP_VERSION 10.0.1
2020

2121
RUN set -ex; \
2222
\

3/slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1818
ENV PYPY_VERSION 6.0.0
1919

2020
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
21-
ENV PYTHON_PIP_VERSION 9.0.1
21+
ENV PYTHON_PIP_VERSION 10.0.1
2222

2323
RUN set -ex; \
2424
\

Dockerfile-slim.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1818
ENV PYPY_VERSION %%PYPY_VERSION%%
1919

2020
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
21-
ENV PYTHON_PIP_VERSION 9.0.1
21+
ENV PYTHON_PIP_VERSION %%PIP_VERSION%%
2222

2323
RUN set -ex; \
2424
\

Dockerfile.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1616
ENV PYPY_VERSION %%PYPY_VERSION%%
1717

1818
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
19-
ENV PYTHON_PIP_VERSION 9.0.1
19+
ENV PYTHON_PIP_VERSION %%PIP_VERSION%%
2020

2121
RUN set -ex; \
2222
\

update.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ for version in "${versions[@]}"; do
8989
for variant in '' slim; do
9090
sed -r \
9191
-e 's!%%PYPY_VERSION%%!'"$fullVersion"'!g' \
92+
-e 's!%%PIP_VERSION%%!'"$pipVersion"'!g' \
9293
-e 's!%%TAR%%!'"$pypy"'!g' \
9394
-e 's!%%CMD%%!'"$cmd"'!g' \
9495
-e 's!%%ARCH-CASE%%!'"$(sed_escape_rhs "$linuxArchCase")"'!g' \

0 commit comments

Comments
 (0)