Skip to content

Commit

Permalink
Update dependencies:
Browse files Browse the repository at this point in the history
pip from 22.0.4 to 22.1.0.
PDM from 1.14.0 to 1.15.0
mypy from 0.942 to 0.950.
pytest from 7.1.1 to 7.1.2.
  • Loading branch information
mnako committed May 24, 2022
1 parent a041a3a commit bfda18d
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 98 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.0.4 && pip install --user pdm==1.14.0
RUN python -m pip install --upgrade pip==22.1.0 && pip install --user pdm==1.15.0
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.0.4 && pip install --user pdm==1.14.0
RUN python -m pip install --upgrade pip==22.1.0 && pip install --user pdm==1.15.0
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 bfda18d

Please sign in to comment.