From 041a1276a9143814a0439991db29b8ba3f6d6dec Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Wed, 8 Feb 2023 13:19:31 +0700 Subject: [PATCH] fix rust nightly install --- tools_container/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools_container/Dockerfile b/tools_container/Dockerfile index cba64d9..21ffccb 100644 --- a/tools_container/Dockerfile +++ b/tools_container/Dockerfile @@ -2,7 +2,7 @@ FROM rust:1.67-slim as build # Install nightly so we can use it to build rustdocs index pages -RUN rustup toolchain install nightly-2023-02-07 \ +RUN rustup toolchain install nightly \ --allow-downgrade \ --profile minimal \ --component clippy @@ -93,7 +93,6 @@ COPY --from=build / / # used when serving mdbook EXPOSE 3000 - # Code file to execute when the docker container starts up (`entrypoint.sh`) ENTRYPOINT ["/entrypoint.sh"]