Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/github_actions/actions/checkout-4…
Browse files Browse the repository at this point in the history
….1.7
  • Loading branch information
mnako authored Jun 23, 2024
2 parents 1b9f7b1 + 1991569 commit 8cb5f1f
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 94 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==24.0 && pip install --user pdm==2.15.1
RUN python -m pip install --upgrade pip==24.1 && pip install --user pdm==2.15.4
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==24.0 && pip install --user pdm==2.15.1
RUN python -m pip install --upgrade pip==24.1 && pip install --user pdm==2.15.4
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 8cb5f1f

Please sign in to comment.