Skip to content
Closed
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
5 changes: 4 additions & 1 deletion release.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM --platform=$BUILDPLATFORM alpine AS ruby-community-build
# Pin the base image to an immutable digest (alpine 3.24.1) so the build cannot
# silently pull a newer, potentially vulnerable `alpine:latest`. This stage is
# only used to assemble files into the final scratch image; no OS packages ship.
FROM --platform=$BUILDPLATFORM alpine:3.24@sha256:28bd5fe8b56d1bd048e5babf5b10710ebe0bae67db86916198a6eec434943f8b AS ruby-community-build
WORKDIR /opentelemetry-ruby
ARG TARGETARCH
ARG RUBY_VERSIONS="3.1 3.2 3.3 3.4"
Expand Down
Loading