Skip to content

Commit

Permalink
🐛(dockerfiles) fix path to get pip for python 2.7
Browse files Browse the repository at this point in the history
Path to download get-pip.py for python 2.7 has changed. This has not been fixed
from our Master and Hawthorn releases.
  • Loading branch information
jbpenrath committed Sep 16, 2021
1 parent 07f72e5 commit 8439a11
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions releases/hawthorn/1/bare/CHANGELOG.md
Expand Up @@ -9,6 +9,9 @@ release.

## [Unreleased]

### Fixed

- Fix build after get-pip.py script moved location
- Fix pip install for python 2.7

## [hawthorn.1-3.3.0] - 2020-05-14
Expand Down
2 changes: 1 addition & 1 deletion releases/hawthorn/1/bare/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
4 changes: 4 additions & 0 deletions releases/hawthorn/1/oee/CHANGELOG.md
Expand Up @@ -9,6 +9,10 @@ release.

## [Unreleased]

### Fixed

- Fix build after get-pip.py script moved location

## [hawthorn.1-oee-3.3.4] - 2021-03-04

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion releases/hawthorn/1/oee/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down
3 changes: 3 additions & 0 deletions releases/master/0/bare/CHANGELOG.md
Expand Up @@ -13,6 +13,9 @@ release.
## [Unreleased]

### Fixed

- Fix build after get-pip.py script moved location
- Fix pip install for python 2.7

[unreleased]: https://github.com/openfun/openedx-docker
2 changes: 1 addition & 1 deletion releases/master/0/bare/Dockerfile
Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && \
apt-get install -y curl

# Download pip installer for python 2.7
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/2.7/get-pip.py
RUN curl -sLo get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py

# Download edxapp release
# Get default EDX_RELEASE_REF value (defined on top)
Expand Down

0 comments on commit 8439a11

Please sign in to comment.