From 41f140b84780ffb81d21fe68c6cd7acb5128d272 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 18 Jun 2026 21:11:38 +0100 Subject: [PATCH] no need for AS --- agate/Dockerfile | 2 +- comitium/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/agate/Dockerfile b/agate/Dockerfile index 1a53c63..8863595 100644 --- a/agate/Dockerfile +++ b/agate/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/alpine:3.23 AS agate +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 \ && cargo install --path agate-3.3.20/ \ diff --git a/comitium/Dockerfile b/comitium/Dockerfile index 148e08d..3add3f7 100644 --- a/comitium/Dockerfile +++ b/comitium/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.23 AS comitium +FROM alpine:3.23 RUN apk --no-cache add make go scdoc RUN wget -O - https://git.sr.ht/~nytpu/comitium/archive/v1.8.2.tar.gz | tar -xz \ && make --directory=comitium-v1.8.2 \