diff --git a/docker/Dockerfile.yew b/docker/Dockerfile.yew index a1d7d5e..0ee68de 100644 --- a/docker/Dockerfile.yew +++ b/docker/Dockerfile.yew @@ -1,10 +1,7 @@ FROM rust:1.70-slim-bullseye -RUN rustup default nightly-2022-10-21 - -RUN apt-get --yes update && apt-get --yes install git pkg-config libssl-dev -RUN cargo install wasm-bindgen-cli --version 0.2.78 +RUN apt-get --yes update && apt-get --yes install git pkg-config libssl-dev nginx && apt-get clean && rm -rf /var/lib/apt/lists/* RUN cargo install trunk --version 0.16.0 RUN rustup target add wasm32-unknown-unknown -RUN rustup component add clippy-preview -RUN rustup component add rustfmt \ No newline at end of file +RUN rustup component add rustfmt +RUN rustup component add clippy-preview \ No newline at end of file