-
Notifications
You must be signed in to change notification settings - Fork 10
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
#523 - Poetry version fixes #524
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ FROM docker.io/python:3.11 AS habushu_builder | |
RUN python -m ensurepip --upgrade && \ | ||
pip install poetry && \ | ||
poetry self add poetry-monorepo-dependency-plugin && \ | ||
poetry self add poetry-plugin-bundle@1.3.0 | ||
poetry self add poetry-plugin-bundle | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I: Removing fixed version until we update Habushu (line 5 installs the latest version of poetry) |
||
|
||
WORKDIR /work-dir | ||
COPY --chown=1001 target/containerize-support ./containerize-support/ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,8 @@ | |
<dockerBuilderBase>docker.io/python:3.11</dockerBuilderBase> | ||
<dockerFinalBase>docker.io/python:3.11-slim</dockerFinalBase> | ||
<dockerUser>1001</dockerUser> | ||
<!-- Turning off the Dockerfile update so that we can remove the fixed version for poetry-plugin-bundle in the Dockerfiles. The latest version of poetry breaks the build. We will revert this change after we update Habushu to work with poetry version 2.x. --> | ||
<updateDockerfile>false</updateDockerfile> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I: Turning off habushu so that we can make the fix in the Dockerfiles above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A: Let's add a POM comment saying why we're turning off the update feature, and when we plan to turn it back on. |
||
</configuration> | ||
</execution> | ||
</executions> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: fixing version until we update Habushu
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assuming this is the highest pre-2.0 version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep!