diff --git a/agate/Dockerfile b/agate/Dockerfile index 8863595..438407d 100644 --- a/agate/Dockerfile +++ b/agate/Dockerfile @@ -1,6 +1,6 @@ FROM docker.io/library/alpine:3.23 -RUN apk --no-cache add rust cargo -RUN wget -O - https://github.com/mbrubeck/agate/archive/refs/tags/v3.3.20.tar.gz | tar -xz \ +RUN apk --no-cache add rust cargo \ + && wget -O - https://github.com/mbrubeck/agate/archive/refs/tags/v3.3.20.tar.gz | tar -xz \ && cargo install --path agate-3.3.20/ \ && apk del rust cargo \ && rm -rf agate-3.3.20 agate-target