-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM docker.io/library/node:18-bullseye-slim | ||
FROM docker.io/library/node:20-bullseye-slim | ||
|
||
LABEL io.parity.image.authors="[email protected]" \ | ||
io.parity.image.vendor="Parity Technologies" \ | ||
|
@@ -62,11 +62,11 @@ RUN chown -R nonroot. /etc/zombie-net | |
USER nonroot | ||
|
||
# install rust | ||
ENV RUST_VERSION=1.75.0 | ||
ENV RUST_VERSION=1.80.0 | ||
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain $RUST_VERSION -y | ||
ENV PATH $PATH:/home/nonroot/.cargo/bin | ||
# install nextest | ||
RUN cargo install cargo-nextest --locked | ||
RUN cargo install cargo-nextest --locked | ||
|
||
# Tini allows us to avoid several Docker edge cases, see https://github.com/krallin/tini. | ||
ENTRYPOINT ["tini", "--", "bash"] | ||
|