From 4ac582da1ae85e9a1d91f08041443595536b1259 Mon Sep 17 00:00:00 2001 From: f Date: Sat, 4 Feb 2023 13:01:43 -0300 Subject: [PATCH] fix: install tea manually if alpine doesn't support it yet --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a4f22f8..b999187 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,9 @@ COPY ./os-version.sh /usr/local/bin/os-version RUN install -dm 2750 -o builder -g builder /srv/gems VOLUME /srv/gems -RUN apk add --no-cache su-exec libc6-compat libstdc++ openssh-client tea +RUN apk add --no-cache su-exec libc6-compat libstdc++ openssh-client +RUN apk add --no-cache tea \ + || wget https://gitea.com/attachments/395b73a9-a56b-4933-8c99-dc2d2619925a -O /usr/bin/tea \ + && chmod +x /usr/bin/tea ENTRYPOINT /bin/sh