alpine (ci-amd64)
Published 2025-12-15 00:13:20 +00:00 by grobe0ba
Installation
docker pull git.tcp80.org/grobe0ba/alpine:ci-amd64sha256:b0fbecff5b2112f50043d006f6aa1d0ef8e23797c5b844e804ad056f69d4f864Image layers
| ADD alpine-minirootfs-3.23.0-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN apk upgrade -aU |
| RUN apk add abuild alpine-sdk apko bubblewrap ca-certificates cmake curl git ninja |
| RUN cd /etc/apk/keys && curl -JO "https://apk.tcp80.org/$(curl https://apk.tcp80.org/key)" |
| RUN echo https://apk.tcp80.org/v3.22/go >> /etc/apk/repositories |
| RUN apk upgrade -aU |
| RUN apk add go |
| RUN adduser -D packager |
| RUN addgroup packager abuild |
| RUN git clone --depth 1 https://github.com/estesp/manifest-tool.git |
| RUN make |
| RUN install -Dm755 -oroot -groot manifest-tool /usr/local/bin/manifest-tool |
| RUN if [[ "$(uname -m)" == "x86_64" ]]; then curl -L -o melange.tar https://github.com/chainguard-dev/melange/releases/download/v0.34.0/melange_0.34.0_linux_amd64.tar.gz; fi |
| RUN tar --strip-components=1 -xf melange.tar |
| RUN install -oroot -groot -m755 melange /usr/bin/melange |
| RUN rm -rf /tmp/* |