fix: install tea manually if alpine doesn't support it yet

This commit is contained in:
f 2023-02-04 13:01:43 -03:00
parent 7f40c70b9c
commit 4ac582da1a

View file

@ -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