Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* PDM from 2.6.1 to 2.7.0
* requests from 2.30.0 to 2.31.0
* pytest-cov from 4.0.0 to 4.1.0
* ruff from 0.0.269 to 0.0.270
  • Loading branch information
mnako committed Jun 3, 2023
1 parent 45f6e22 commit c404ad6
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 95 deletions.
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN groupadd --force --gid ${GROUP_ID} --system usergroup && \
USER user

WORKDIR /app
RUN python -m pip install --upgrade pip==23.1.2 && pip install --user pdm==2.6.1
RUN python -m pip install --upgrade pip==23.1.2 && pip install --user pdm==2.7.0
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"

COPY main.py pdm.lock pyproject.toml /app/
Expand Down
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_name }}/Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN addgroup -S usergroup && adduser -S user -G usergroup && mkdir /app && chown
USER user

WORKDIR /app
RUN python -m pip install --upgrade pip==23.1.2 && pip install --user pdm==2.6.1
RUN python -m pip install --upgrade pip==23.1.2 && pip install --user pdm==2.7.0
ENV PATH="/app/__pypackages__/3.11/bin:/home/user/.local/bin:${PATH}"

COPY main.py pdm.lock pyproject.toml /app/
Expand Down
Loading

0 comments on commit c404ad6

Please sign in to comment.