Skip to content

Commit

Permalink
build(docker): Unpin pip for kedro-docker (#680)
Browse files Browse the repository at this point in the history
Unpin pip for kedro-docker

Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht authored May 17, 2024
1 parent b424137 commit 92511ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kedro-docker/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def before_all(context):
# Temporarily pin pip to fix https://github.com/jazzband/pip-tools/issues/1503
# This can be removed when Kedro 0.17.6 is released, because pip-tools is upgraded
# for that version.
"pip>=21.2,<23.2",
"pip>=21.2",
"setuptools>=38.0",
"wheel",
".",
Expand Down
2 changes: 1 addition & 1 deletion kedro-docker/kedro_docker/template/Dockerfile.simple
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM $BASE_IMAGE as runtime-environment

# install project requirements
COPY requirements.txt /tmp/requirements.txt
RUN python -m pip install -U "pip>=21.2,<23.2"
RUN python -m pip install -U "pip>=21.2"
RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm -f /tmp/requirements.txt

# add kedro user
Expand Down
2 changes: 1 addition & 1 deletion kedro-docker/kedro_docker/template/Dockerfile.spark
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apt-get install -y procps default-jre-headless && rm -rf /var/lib/apt/lists/*

# install project requirements
COPY requirements.txt /tmp/requirements.txt
RUN python -m pip install -U "pip>=21.2,<23.2"
RUN python -m pip install -U "pip>=21.2"
RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm -f /tmp/requirements.txt

# add kedro user
Expand Down

0 comments on commit 92511ad

Please sign in to comment.