pin to specific version of poetry

This commit is contained in:
jasquat 2023-03-06 14:22:59 -05:00
parent b4ad12b3d7
commit 3ac9581607
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ jobs:
python-version: "3.11"
- name: Install Poetry
run: |
pipx install poetry
pipx install --pip-args=--constraint=spiffworkflow-backend/.github/workflows/constraints.txt poetry
poetry --version
- name: Poetry Install
run: poetry install

View File

@ -19,7 +19,7 @@ RUN apt-get update \
# Setup image for installing Python dependencies.
FROM base AS setup
RUN pip install poetry
RUN pip install poetry=1.2.2
RUN useradd _gunicorn --no-create-home --user-group
RUN apt-get update \