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 \