fix: correct Docker image SHA, install make in slim image
All checks were successful
check / check (push) Successful in 22s

This commit is contained in:
clawbot 2026-02-28 02:17:48 -08:00
parent b0452265c8
commit 3858a80846

View File

@ -1,6 +1,7 @@
# v22.22.0 2025-05-27
FROM node:22-slim@sha256:2f3571cb4deb87a2e2992eaa5ed75d99ad4d348eb7cabe6a62f8f0a3bc9b29c7
# node:22-slim 2026-02-28
FROM node:22-slim@sha256:dd9d21971ec4395903fa6143c2b9267d048ae01ca6d3ea96f16cb30df6187d94
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends make && rm -rf /var/lib/apt/lists/*
COPY . .
RUN npm install -g prettier && make check