This pull request introduces a new Rust project named hello-docker and updates the development container configuration to include GitHub CLI. The most important changes include adding the new project files, configuring the Dockerfile for building and running the project, and updating the devcontainer features.
New Project Addition:
hello-docker/Cargo.toml: Added configuration for the new Rust project hello-docker including package name, version, and dependencies.
hello-docker/src/main.rs: Added the main source file for the hello-docker project with a simple "Hello, world!" output.
Docker Configuration:
hello-docker/Dockerfile: Added a Dockerfile to build the hello-docker project using a multi-stage build process with Rust and Debian images.
This pull request introduces a new Rust project named
hello-docker
and updates the development container configuration to include GitHub CLI. The most important changes include adding the new project files, configuring the Dockerfile for building and running the project, and updating the devcontainer features.New Project Addition:
hello-docker/Cargo.toml
: Added configuration for the new Rust projecthello-docker
including package name, version, and dependencies.hello-docker/src/main.rs
: Added the main source file for thehello-docker
project with a simple "Hello, world!" output.Docker Configuration:
hello-docker/Dockerfile
: Added a Dockerfile to build thehello-docker
project using a multi-stage build process with Rust and Debian images.Devcontainer Update:
.devcontainer/devcontainer.json
: Updated the devcontainer configuration to include the GitHub CLI feature.Removal of Old Example:
simple-example/main.rs
: Removed the old example code that printed "Hello, Docker!".Issues
Closes #1