File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM --platform=linux/amd64 rust:1.80 .0-alpine
1
+ FROM --platform=linux/amd64 rust:1.81 .0-alpine
2
2
3
3
RUN apk add --no-cache ca-certificates build-base
4
4
Original file line number Diff line number Diff line change 1
- FROM --platform=linux/amd64 rust:1.80 .0-bookworm
1
+ FROM --platform=linux/amd64 rust:1.81 .0-bookworm
2
2
3
3
# Install build dependencies
4
4
RUN apt-get update \
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ RUN apt update -y \
8
8
9
9
# GET FROM https://github.com/rust-lang/docker-rust-nightly
10
10
ENV RUSTUP_HOME=/usr/local/rustup \
11
- CARGO_HOME=/usr/local/cargo \
12
- PATH=/usr/local/cargo/bin:$PATH
11
+ CARGO_HOME=/usr/local/cargo \
12
+ PATH=/usr/local/cargo/bin:$PATH
13
13
14
14
RUN wget --no-verbose "https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init" \
15
15
&& chmod +x rustup-init \
16
- && ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.80 .0 \
16
+ && ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.81 .0 \
17
17
&& rm rustup-init \
18
18
&& chmod -R a+w $RUSTUP_HOME $CARGO_HOME \
19
19
&& rustup --version \
Original file line number Diff line number Diff line change 1
1
# Cross Compilation Scripts
2
2
3
- As this library is targetting go developers, we cannot assume a properly set up
3
+ As this library is targeting go developers, we cannot assume a properly set up
4
4
rust environment on their system. Further, when importing this library, there is
5
5
no clean way to add a ` libwasmvm.{so,dll,dylib} ` . It needs to be committed with
6
6
the tagged (go) release in order to be easily usable.
@@ -23,7 +23,7 @@ See those DockerHub repos for all available versions of the builder images.
23
23
24
24
** Unreleased**
25
25
26
- - Update Rust to 1.80 .0.
26
+ - Update Rust to 1.81 .0.
27
27
- Update Dockerfile.cross from Debian Bullseye to Bookworm ([ #533 ] )
28
28
- Rename ` .cargo/config ` to ` .cargo/config.toml ` to silence warning
29
29
You can’t perform that action at this time.
0 commit comments