pin to specific version of poetry
This commit is contained in:
parent
b4ad12b3d7
commit
3ac9581607
|
@ -193,7 +193,7 @@ jobs:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
run: |
|
run: |
|
||||||
pipx install poetry
|
pipx install --pip-args=--constraint=spiffworkflow-backend/.github/workflows/constraints.txt poetry
|
||||||
poetry --version
|
poetry --version
|
||||||
- name: Poetry Install
|
- name: Poetry Install
|
||||||
run: poetry install
|
run: poetry install
|
||||||
|
|
|
@ -19,7 +19,7 @@ RUN apt-get update \
|
||||||
# Setup image for installing Python dependencies.
|
# Setup image for installing Python dependencies.
|
||||||
FROM base AS setup
|
FROM base AS setup
|
||||||
|
|
||||||
RUN pip install poetry
|
RUN pip install poetry=1.2.2
|
||||||
RUN useradd _gunicorn --no-create-home --user-group
|
RUN useradd _gunicorn --no-create-home --user-group
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
|
|
Loading…
Reference in New Issue