chore(deps): update alpine docker tag to v3.23#12476
chore(deps): update alpine docker tag to v3.23#12476renovate[bot] wants to merge 1 commit intomasterfrom
Conversation
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
🤖 Augment PR SummarySummary: Updates the base image used by the scaffolder cookiecutter Dockerfile from Alpine 3.18 to 3.23. Why: Keeps the Docker base image current to pick up newer upstream fixes and security updates. 🤖 Was this summary useful? React with 👍 or 👎 |
WalkthroughThis PR updates the base Docker image in the Cookiecutter Dockerfile used by the scaffolder-backend plugin, bumping Alpine Linux from version 3.18 to 3.23. This upgrade brings the latest security patches and package updates available in the newer Alpine release. Changes
Sequence DiagramThis diagram shows the interactions between components: sequenceDiagram
participant Dev as Developer
participant Docker as Docker Engine
participant Registry as Docker Hub Registry
participant Container as Built Container
Dev->>Docker: docker build .
activate Docker
Note over Docker: Dockerfile updated
Note over Docker: FROM alpine:3.18 → alpine:3.23
Docker->>Registry: Pull alpine:3.23
activate Registry
Registry-->>Docker: alpine:3.23 image layers
deactivate Registry
Docker->>Container: RUN apk add --update git ...
activate Container
Note over Container: Package installation
Container-->>Docker: Layer committed
deactivate Container
Docker-->>Dev: Image built successfully
deactivate Docker
Note over Dev,Container: Base OS upgraded from Alpine 3.18 to 3.23
|
|
This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution! |
This PR contains the following updates:
3.18→3.23Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
EntelligenceAI PR Summary
Bumps the Alpine Linux base image in the scaffolder-backend Cookiecutter Dockerfile from 3.18 to 3.23.
FROM alpine:3.18toFROM alpine:3.23inplugins/scaffolder-backend/scripts/Cookiecutter.dockerfileConfidence Score: 5/5 - Safe to Merge