Compare commits

..

3 Commits
master ... main

View File

@ -1,8 +1,7 @@
# ruby:3.1-bullseye, pinned 2026-02-22
# (ruby:3.1-buster is EOL; bullseye is the supported equivalent)
FROM ruby@sha256:077cdae43603fc568f4c65a2558cb608299b84c93e88c0048e6f3bdf3fa138fd AS builder
FROM ruby@sha256:4cc0e5aaa726f8c2cbf1dfc8e5ecd459dbfbebe44b5eee5da6f79ffcc1b6c36f AS builder
RUN apt update && apt install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
bsdmainutils \
build-essential \
make \
@ -13,7 +12,8 @@ RUN apt update && apt install -y \
libxslt-dev \
pkg-config \
python3 \
xz-utils
xz-utils \
&& rm -rf /var/lib/apt/lists/*
# Node.js 20.18.3 LTS, pinned by sha256
RUN cd /tmp && \