Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/node.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ARG BUILD_MODE=published

# ── Build deps shared by both modes ─────────────────────────────────────────────
FROM rust:1.90-slim-bookworm AS builder-base
FROM rust:1.96-slim-bookworm AS builder-base

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚪ LOW RISK

Nitpick: The documentation at this line references an outdated version as an example of unpinned tags. This should be updated to reflect the current base image version to ensure clarity and avoid confusion regarding glibc compatibility requirements.

WORKDIR /build
ENV RUSTC_WRAPPER=""

Expand Down
2 changes: 1 addition & 1 deletion docker/resolver.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
ARG BUILD_MODE=published

# ── Build deps shared by both modes ─────────────────────────────────────────────
FROM rust:1.90-slim-bookworm AS builder-base
FROM rust:1.96-slim-bookworm AS builder-base

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚪ LOW RISK

Nitpick: The documentation at this line references an outdated version as an example of unpinned tags. This should be updated to reflect the current base image version to ensure clarity and avoid confusion regarding glibc compatibility requirements.

RUN apt-get update && apt-get install -y --no-install-recommends \
pkg-config libssl-dev \
&& rm -rf /var/lib/apt/lists/*
Expand Down
Loading