Skip to content

Commit

Permalink
Merge pull request #524 from boozallen/523-fix-poetry-versioning-brea…
Browse files Browse the repository at this point in the history
…kage

#523 - Poetry version fixes
  • Loading branch information
meliz19 authored Jan 6, 2025
2 parents 4a95e9b + 226386b commit 4f1faaf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/actions/install_dependencies/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ runs:
default: 3.11.4
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.5
- name: Install Helm
shell: bash
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

WORKDIR /work-dir
COPY --chown=1001 target/containerize-support ./containerize-support/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

WORKDIR /work-dir
COPY --chown=1001 target/containerize-support ./containerize-support/
Expand Down
2 changes: 2 additions & 0 deletions extensions/extensions-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 4f1faaf

Please sign in to comment.