2025-06-04 02:06:41 +02:00
|
|
|
# My Rust environment in a Docker container
|
|
|
|
|
|
2025-06-04 03:00:20 +02:00
|
|
|
sudo su -
|
|
|
|
|
cd /home
|
|
|
|
|
git clone https://github.com/hanez/rust-docker.git
|
|
|
|
|
or
|
|
|
|
|
git clone git@github.com:hanez/rust-docker.git
|
|
|
|
|
cd rust-docker
|
|
|
|
|
docker build -t rusty .
|
2025-06-04 03:01:31 +02:00
|
|
|
docker run -it --entrypoint /bin/bash rusty
|
2025-06-04 03:00:20 +02:00
|
|
|
|