Skip to content

Commit 17eed8e

Browse files
fix: poetry version
* fix: poetry error * fix: workflow version
1 parent 6444286 commit 17eed8e

File tree

5 files changed

+300
-293
lines changed

5 files changed

+300
-293
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
env:
1515
ENVIRONMENT: "test"
1616
- name: Installing poetry
17-
run: pip3 install poetry
17+
run: pip3 install poetry==1.8.1
1818
- name: Poetry install
1919
run: poetry install --no-interaction

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM python:3.9-slim-buster
33
WORKDIR /app
44
COPY pyproject.toml /app
55
COPY poetry.lock /app
6-
RUN pip install poetry
6+
RUN pip install poetry==1.8.1
77
RUN poetry config virtualenvs.create false
88
RUN poetry install --no-interaction
99
COPY ./ /app

docker-compose.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42
backend:
53
build: .

0 commit comments

Comments
 (0)