Skip to content

Commit ab44ea1

Browse files
committed
Update dependencies:
* pip from 24.1.2 to 24.2 * pdm from 2.16.1 to 2.19.1 * black from 24.4.2 to 24.8.0 * mypy from 1.10.1 to 1.11.2 * pytest form 8.2.2 to 8.3.3 * ruff from 0.5.1 to 0.6.9
1 parent 29b1ca2 commit ab44ea1

File tree

4 files changed

+155
-115
lines changed

4 files changed

+155
-115
lines changed

{{ cookiecutter.project_name }}/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN groupadd --force --gid ${GROUP_ID} --system usergroup && \
1212
USER user
1313

1414
WORKDIR /app
15-
RUN python -m pip install --upgrade pip==24.1.2 && pip install --user pdm==2.16.1
15+
RUN python -m pip install --upgrade pip==24.2 && pip install --user pdm==2.19.1
1616
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"
1717

1818
COPY main.py pdm.lock pyproject.toml /app/

{{ cookiecutter.project_name }}/Dockerfile.production

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN addgroup -S usergroup && adduser -S user -G usergroup && mkdir /app && chown
66
USER user
77

88
WORKDIR /app
9-
RUN python -m pip install --upgrade pip==24.1.2 && pip install --user pdm==2.16.1
9+
RUN python -m pip install --upgrade pip==24.2 && pip install --user pdm==2.19.1
1010
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"
1111

1212
COPY main.py pdm.lock pyproject.toml /app/

0 commit comments

Comments
 (0)