alpine (ci-arm64)
Published 2025-12-15 00:03:41 +00:00 by grobe0ba
Installation
docker pull git.tcp80.org/grobe0ba/alpine:ci-arm64sha256:49d7aaae9cf538c7167495b34eb40f381502318a63a90181ccbff66410049bfaImage layers
| ADD alpine-minirootfs-3.23.0-aarch64.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)" == "aarch64" ]]; then curl -L -o melange.tar https://github.com/chainguard-dev/melange/releases/download/v0.34.0/melange_0.34.0_linux_arm64.tar.gz; fi |
| RUN tar --strip-components=1 -xf melange.tar |
| RUN install -oroot -groot -m755 melange /usr/bin/melange |
| RUN rm -rf /tmp/* |