-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebuild Rust container on December 2023 with Rust 1.74 (#33)
The current image is quite dated and no longer adequate to compile `ash`. Our `rust:latest` base image tag is replaced with `1.74` to ensure a recent-enough Rust base container is used, instead of considering an _ancient_ local image/tag cache, as experience has shown.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# This defines a docker image for generating and buld-testing | ||
# Rust bindings to the Vulkan API. | ||
|
||
FROM rust:latest | ||
FROM rust:1.74 | ||
LABEL maintainer="Marijn Suijten <[email protected]>" | ||
|
||
# Git for cloning repos, libclang-dev for running bindgen | ||
|