Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
* PDM from 2.3.2 to 2.3.4
* isort from 5.10.1 to 5.11.4
  • Loading branch information
mnako committed Dec 31, 2022
1 parent 07d7613 commit 5d11de7
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 78 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==22.3.1 && pip install --user pdm==2.3.2
RUN python -m pip install --upgrade pip==22.3.1 && pip install --user pdm==2.3.4
ENV PATH="/app/__pypackages__/3.10/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==22.3.1 && pip install --user pdm==2.3.2
RUN python -m pip install --upgrade pip==22.3.1 && pip install --user pdm==2.3.4
ENV PATH="/app/__pypackages__/3.10/bin:/home/user/.local/bin:${PATH}"

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

0 comments on commit 5d11de7

Please sign in to comment.