Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ubuntu:18.04
ARG RUST_TOOLCHAIN="1.35.0"
ARG RUST_TOOLCHAIN="1.39.0"

# Adding rust binaries to PATH.
ENV PATH="$PATH:/root/.cargo/bin"
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,15 @@ Rust targets on aarch64:

### Publishing a New Version

In this example, we assume the current version is `v3` and we want to publish
a newer `v4` container version.

On an aarch64 platform:

```bash
> cd rust-vmm-dev-container
> # Build a container image for aarch64
> docker build -t rustvmm/dev:aarch64 -f Dockerfile .
> docker build -t rustvmm/dev:v4_aarch64 -f Dockerfile .
> docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
rustvmm/dev aarch64 f3fd02dfb213 21 hours ago 1.13GB
Expand Down