serverman (latest)
Published 2024-04-16 23:30:53 +00:00 by hamcha
Installation
docker pull git.fromouter.space/staxman/serverman:latest
sha256:d12628f29f4b835af3df31d07d17f4b907346bde5bf7d48cbcb58fa026662303
About this package
The official Docker images for Rust
Image Layers
ADD file:37a76ec18f9887751cd8473744917d08b7431fc4085097bb6a09d81b41775473 in / |
CMD ["/bin/sh"] |
LABEL org.opencontainers.image.source=https://github.com/rust-lang/docker-rust |
RUN /bin/sh -c apk add --no-cache ca-certificates gcc # buildkit |
ENV RUSTUP_HOME=/usr/local/rustup CARGO_HOME=/usr/local/cargo PATH=/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUST_VERSION=nightly |
RUN /bin/sh -c set -eux; apkArch="$(apk --print-arch)"; case "$apkArch" in x86_64) rustArch='x86_64-unknown-linux-musl'; rustupSha256='b9d84cbba1ed29d11c534406a1839d64274d29805041e0e096d5293ae6390dd0' ;; aarch64) rustArch='aarch64-unknown-linux-musl'; rustupSha256='841513f7599fcf89c71a62dea332337dfd4332216b60c17648d6effbeefe66a9' ;; *) echo >&2 "unsupported architecture: $apkArch"; exit 1 ;; esac; url="https://static.rust-lang.org/rustup/archive/1.27.0/${rustArch}/rustup-init"; wget "$url"; echo "${rustupSha256} *rustup-init" | sha256sum -c -; chmod +x rustup-init; ./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch}; rm rustup-init; chmod -R a+w $RUSTUP_HOME $CARGO_HOME; rustup --version; cargo --version; rustc --version; # buildkit |
COPY --from=build /usr/local/cargo/bin/serverman /usr/local/bin/serverman |
Labels
Key | Value |
---|---|
org.opencontainers.image.created | 2024-04-16T00:11:11.628Z |
org.opencontainers.image.description | The official Docker images for Rust |
org.opencontainers.image.licenses | |
org.opencontainers.image.revision | 0fe67594a64bac84560685696cb51dff91ac47b5 |
org.opencontainers.image.source | https://github.com/rust-lang/docker-rust |
org.opencontainers.image.title | docker-rust |
org.opencontainers.image.url | https://github.com/rust-lang/docker-rust |
org.opencontainers.image.version | nightly-alpine3.19 |