dockerfiles: skip cache on crates.io new release, update shadowmire to use python 3.13

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2025-09-16 15:01:06 +08:00
parent ac0ece271c
commit 084147d983
No known key found for this signature in database
3 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,7 @@
FROM rust:trixie
LABEL maintainer="Jiajie Chen <jiegec@noc.ac.cn>"
# used to skip caching on new version release
ADD "https://crates.io/api/v1/crates/rustup-mirror" "crates_version.json"
RUN cargo install rustup-mirror
CMD ["/bin/bash"]

View File

@ -1,4 +1,4 @@
ARG PY_VERSION=3.11
ARG PY_VERSION=3.13
FROM python:${PY_VERSION}-alpine

View File

@ -1,5 +1,7 @@
FROM rust:trixie
LABEL maintainer="Shengqi Chen <i@harrychen.xyz>"
# used to skip caching on new version release
ADD "https://crates.io/api/v1/crates/tsumugu" "crates_version.json"
RUN cargo install tsumugu
CMD ["/bin/bash"]