From cd30f061e9b6478d97f066362d449bb37231d476 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 22 Jun 2026 18:46:40 +0100 Subject: [PATCH] adds gcc in agate (dependency) --- agate/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agate/Dockerfile b/agate/Dockerfile index 8bb1ce3..f659939 100644 --- a/agate/Dockerfile +++ b/agate/Dockerfile @@ -1,7 +1,7 @@ ARG ALPINE_VERSION FROM docker.io/alpine:${ALPINE_VERSION} ARG VERSION -RUN apk --no-cache add rust cargo \ +RUN apk --no-cache add rust cargo gcc \ && wget -O - https://github.com/mbrubeck/agate/archive/refs/tags/v${VERSION}.tar.gz | tar -xz \ && cargo install --path agate-${VERSION}/ \ && apk del rust cargo \