Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -11,6 +11,9 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
11 |
# パスを通す(cargoを使えるように)
|
12 |
ENV PATH="/root/.cargo/bin:${PATH}"
|
13 |
RUN rustup update stable
|
|
|
|
|
|
|
14 |
RUN curl -L https://github.com/WebAssembly/binaryen/releases/download/version_123/binaryen-version_123-x86_64-linux.tar.gz \
|
15 |
| tar -xz -C /usr/local --strip-components=1
|
16 |
|
|
|
11 |
# パスを通す(cargoを使えるように)
|
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 |
|