Skip to content

Commit 3ac3484

Browse files
authored
Merge pull request #1 from PaystackHQ/poetry_fix
Fix installation for poetry v2.0.0
2 parents 2ea7da6 + 6476568 commit 3ac3484

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ FROM python:3.11
33
WORKDIR /app
44
ENTRYPOINT ["/app/entrypoint.py"]
55

6-
COPY poetry.lock pyproject.toml ./
6+
COPY poetry.lock pyproject.toml README.md ./
77
RUN pip install poetry \
88
&& poetry config virtualenvs.create false \
9-
&& poetry install
9+
&& poetry install --no-root
1010

1111
COPY . ./

0 commit comments

Comments
 (0)