Update cross-rs image to :main.

The :latest tag points to a very old image versions, which are not
consistent with regards to the base-image. This is causing differences
in library versions across different target platforms.

Once a v0.3.0 release is available, :main can be changed into :0.3.0.

Closes #421.
This commit is contained in:
Orne Brocaar 2024-05-14 11:40:32 +01:00
parent 4968f5d792
commit ae31e4d85f
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/cross-rs/aarch64-unknown-linux-musl:latest
FROM ghcr.io/cross-rs/aarch64-unknown-linux-musl:main
RUN apt-get update && \
apt-get --assume-yes install \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/cross-rs/armv7-unknown-linux-musleabihf:latest
FROM ghcr.io/cross-rs/armv7-unknown-linux-musleabihf:main
RUN apt-get update && \
apt-get --assume-yes install \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/cross-rs/x86_64-unknown-linux-musl:latest
FROM ghcr.io/cross-rs/x86_64-unknown-linux-musl:main
RUN apt-get update && \
apt-get --assume-yes install \