Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Update poetry version in Dockerfile to match what we have in poetry.lock #894

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.10
RUN apt-get update && apt-get install -y \
python3-dev libpq-dev wget unzip \
python3-setuptools gcc bc
RUN pip install --no-cache-dir poetry==1.1.13
RUN pip install --no-cache-dir poetry==1.7.1
COPY . /app
WORKDIR /app
# For now while we are in heavy development we install the latest with Poetry
Expand Down