Skip to content

Commit adab897

Browse files
author
Leo Kirchner
committed
pins poetry in Dockerfile to 1.5.1
1 parent 0ad1e2b commit adab897

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ jobs:
130130
fail-fast: true
131131
matrix:
132132
python-version: ["3.7", "3.8", "3.9", "3.10"]
133+
poetry-version: ["1.5.1"]
133134
runs-on: "ubuntu-20.04"
134135
env:
135136
PYTHON_VER: "${{ matrix.python-version }}"
@@ -140,6 +141,7 @@ jobs:
140141
uses: "networktocode/gh-action-setup-poetry-environment@v5"
141142
with:
142143
python-version: "${{ matrix.python-version }}"
144+
poetry-version: "${{ matrix.poetry-version }}"
143145
- name: "Install redis"
144146
run: "sudo apt-get install -y redis"
145147
- name: "Run poetry Install"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
88
&& rm -rf /var/lib/apt/lists/*
99

1010
RUN pip install --upgrade pip \
11-
&& pip install poetry
11+
&& pip install poetry==1.5.1
1212

1313

1414
WORKDIR /local

0 commit comments

Comments
 (0)