Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Factory:ARM
rust-stable-image
README.md
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File README.md of Package rust-stable-image
# Rust 1.82 Container Image ![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) ## Description [Rust](https://www.rust-lang.org/) is a systems programming language sponsored by Mozilla Research. It is designed to be a safe, concurrent, practical language, supporting functional and imperative-procedural paradigms. While syntactically similar to C++, Rust is designed for better memory safety without performance penalty. ## Usage To compile and deploy an application, copy the sources, fetch dependencies, and build the binary: ```Dockerfile # Build the application using the Rust 1.82 container image FROM registry.opensuse.org/opensuse/bci/rust:1.82 as build WORKDIR /app COPY . ./ RUN cargo build --release # Bundle the application into a BCI micro (or other BCI image) FROM registry.opensuse.org/opensuse/bci/bci-micro:latest COPY --from=build /app/target/release/hello /usr/local/bin/hello CMD ["hello"] ``` Build and run the container image: ```ShellSession $ podman build -t my-rust-app . $ podman run -it --rm my-rust-app ``` There are situations, where you don't want to run an application inside a container. To compile the application, without running it inside a container instance, use the following command: ```ShellSession $ podman run --rm -v "$PWD":/app:Z -w /app registry.opensuse.org/opensuse/bci/rust:1.82 cargo build --release ``` **Note:** The Rust image is intended to be used as a build environment. For runtime, use smaller images such as `bci-base`, `bci-micro`, or `bci-minimal`. ## Licensing `SPDX-License-Identifier: MIT` This documentation and the build recipe are licensed as MIT. The container itself contains various software components under various open source licenses listed in the associated Software Bill of Materials (SBOM). This image is based on [openSUSE Tumbleweed](https://get.opensuse.org/tumbleweed/).
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor