Skip to content

Commit

Permalink
Pin poetry to 1.8.3 in dockerfiles (openwallet-foundation#3427)
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <jamiehalebc@gmail.com>
  • Loading branch information
jamshale authored Jan 6, 2025
1 parent cc836bb commit 14adff1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /src

COPY . .

RUN pip install --no-cache-dir poetry
RUN pip install --no-cache-dir poetry==1.8.3
RUN poetry build

FROM python:${python_version}-slim-bullseye AS main
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.demo
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN mkdir -p bin && curl -L -o bin/jq \
chmod ug+x bin/jq

# Copy and install Aries Agent code
RUN pip install --no-cache-dir poetry
RUN pip install --no-cache-dir poetry==1.8.3

COPY README.md pyproject.toml poetry.lock ./

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.run
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /usr/src/app
# For consistency with base images, include curl for healthchecks
RUN apt-get update && apt-get install -y curl && apt-get clean

RUN pip install --no-cache-dir poetry
RUN pip install --no-cache-dir poetry==1.8.3

RUN mkdir -p acapy_agent && touch acapy_agent/__init__.py
COPY pyproject.toml poetry.lock README.md ./
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update -y && \

WORKDIR /usr/src/app

RUN pip install --no-cache-dir poetry
RUN pip install --no-cache-dir poetry==1.8.3

COPY ./README.md pyproject.toml ./poetry.lock ./
RUN mkdir acapy_agent && touch acapy_agent/__init__.py
Expand Down

0 comments on commit 14adff1

Please sign in to comment.