Sign inSign up

gabriellhl/rust

By gabriellhl

Updated 8 months ago

Image
0

149

gabriellhl/rust repository overview

Rust Toolchain Docker Image

Overview

This image provides a shared Rust build environment based on rust:1.91-slim, with commonly required native dependencies preinstalled.

It is intended to be used as:

  • A base image for Rust services
  • A builder image in multi-stage Dockerfiles
  • A development shell for Rust projects

This image does not include Python or PyO3 tooling.


Included Components

ComponentVersion / Notes
Rust1.91
Base OSDebian slim
Toolingbuild-essential, pkg-config
TLSlibssl-dev, ca-certificates

Intended Use

Suitable for:

  • Rust-only services
  • Native extension builds
  • CI build stages
  • Interactive Rust development containers

Not intended for:

  • Python bindings (use rust-python)
  • Runtime-only production images

Example Usage

Development shell
docker run --rm -it \
  -v $(pwd):/workspace \
  quantr/rust:1.91 \
  bash

Tag summary

Content type

Image

Digest

sha256:dcdadce00

Size

339 MB

Last updated

8 months ago

docker pull gabriellhl/rust