Skip to content

Commit

Permalink
Bump PDM to 2.21 in the api/ and indexer_worker/
Browse files Browse the repository at this point in the history
  • Loading branch information
krysal committed Dec 4, 2024
1 parent 66b4a15 commit a8f822a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ ENV PIP_NO_COLOR=1
# - Create a virtualenv inside `/venv`
# - Install PDM to install Python dependencies
RUN apt-get update \
&& apt-get install -yqq --no-install-recommends \
python3-dev \
&& apt-get install -yqq --no-install-recommends python3-dev \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/* \
&& pip install pdm~=2.19
&& pip install --upgrade pip \
&& pip install pdm~=2.21

# Copy subpackages from additional build-context 'packages'
# hadolint ignore=DL3022
Expand Down
6 changes: 3 additions & 3 deletions indexer_worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ ENV PIP_NO_COLOR=1
# - Install system packages needed for building Python dependencies
# - Install PDM to install Python dependencies
RUN apt-get update \
&& apt-get install -yqq --no-install-recommends \
python3-dev \
&& apt-get install -yqq --no-install-recommends python3-dev \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/* \
&& pip install pdm~=2.14
&& pip install --upgrade pip \
&& pip install pdm~=2.21

# Copy the Pipenv files into the container
COPY pyproject.toml pdm.lock /
Expand Down

0 comments on commit a8f822a

Please sign in to comment.