Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 63c4cbf

Browse files
also update poetry
1 parent 40c334e commit 63c4cbf

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
@@ -10,15 +10,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1010
&& rm -rf /var/lib/apt/lists/*
1111

1212
# Install Poetry
13-
RUN pip install poetry==1.8.4 && rm -rf /root/.cache/pip
13+
RUN pip install poetry==2.0.0 && rm -rf /root/.cache/pip
1414

1515
# Set the working directory
1616
WORKDIR /app
1717
COPY pyproject.toml poetry.lock* /app/
1818

1919
# Configure Poetry and install dependencies
2020
RUN poetry config virtualenvs.create false && \
21-
poetry install --no-dev
21+
poetry install
2222

2323
# Copy the rest of the application
2424
COPY . /app

0 commit comments

Comments
 (0)