Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -12,11 +12,10 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
12 |
ENV PATH="/root/.cargo/bin:${PATH}"
|
13 |
RUN rustup update stable
|
14 |
|
15 |
-
RUN cargo update
|
16 |
-
|
17 |
RUN curl -L https://github.com/WebAssembly/binaryen/releases/download/version_123/binaryen-version_123-x86_64-linux.tar.gz \
|
18 |
| tar -xz -C /usr/local --strip-components=1
|
19 |
|
|
|
20 |
RUN cargo install wasm-bindgen-cli
|
21 |
RUN cargo install wasm-snip
|
22 |
RUN apt-get update && apt-get install -y binaryen
|
|
|
12 |
ENV PATH="/root/.cargo/bin:${PATH}"
|
13 |
RUN rustup update stable
|
14 |
|
|
|
|
|
15 |
RUN curl -L https://github.com/WebAssembly/binaryen/releases/download/version_123/binaryen-version_123-x86_64-linux.tar.gz \
|
16 |
| tar -xz -C /usr/local --strip-components=1
|
17 |
|
18 |
+
RUN cargo update
|
19 |
RUN cargo install wasm-bindgen-cli
|
20 |
RUN cargo install wasm-snip
|
21 |
RUN apt-get update && apt-get install -y binaryen
|