dockerfile: add binaryen
Kim committed
Nov 18, 2025 at 17:11 UTC
81b56d5662146645ac8d4d7573323ae06c12b835
1 file changed
+1
-1
Dockerfile
+1
-1
@@ -4,7 +4,7 @@ FROM --platform=$BUILDPLATFORM golang:1 AS builder
4
WORKDIR /src
5
6
RUN apt-get update && apt-get install -y --no-install-recommends \
7
- nodejs npm brotli make && rm -rf /var/lib/apt/lists/*
7
+ nodejs npm brotli make binaryen && rm -rf /var/lib/apt/lists/*
8
9
COPY go.mod go.sum ./
10
RUN --mount=type=cache,target=/go/pkg/mod go mod download