forked from CosmWasm/optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
101 lines (76 loc) · 2.94 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
FROM rust:1.75.0-alpine as targetarch
ARG BUILDPLATFORM
ARG TARGETPLATFORM
ARG TARGETARCH
ARG BINARYEN_VERSION="version_116"
RUN echo "Running on $BUILDPLATFORM, building for $TARGETPLATFORM"
# AMD64
FROM targetarch as builder-amd64
ARG ARCH="x86_64"
# ARM64
FROM targetarch as builder-arm64
ARG ARCH="aarch64"
# GENERIC
# The builder image builds binaries like wasm-opt and bob.
# After the build process, only the final binaries are copied into the *-optimizer
# images to avoid shipping all the source code and intermediate build results to the user.
FROM builder-${TARGETARCH} as builder
# Download binaryen sources
ADD https://github.com/WebAssembly/binaryen/archive/refs/tags/$BINARYEN_VERSION.tar.gz /tmp/binaryen.tar.gz
# Extract and compile wasm-opt
# Adapted from https://github.com/WebAssembly/binaryen/blob/main/.github/workflows/build_release.yml
RUN apk update && apk add build-base cmake git python3 clang ninja
RUN tar -xf /tmp/binaryen.tar.gz
RUN cd binaryen-version_*/ \
&& git clone --depth 1 https://github.com/google/googletest.git ./third_party/googletest \
&& cmake . -G Ninja -DCMAKE_CXX_FLAGS="-static" -DCMAKE_C_FLAGS="-static" -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON \
&& ninja wasm-opt
# Run tests
RUN cd binaryen-version_*/ && ninja wasm-as wasm-dis
RUN cd binaryen-version_*/ && python3 check.py wasm-opt
# Install wasm-opt
RUN strip binaryen-version_*/bin/wasm-opt
RUN mv binaryen-version_*/bin/wasm-opt /usr/local/bin
# Check cargo version
RUN cargo --version
# Check wasm-opt version
RUN wasm-opt --version
# Add scripts
ADD optimize.sh /usr/local/bin/optimize.sh
RUN chmod +x /usr/local/bin/optimize.sh
# Being required for gcc linking of bob
RUN apk add --no-cache musl-dev
# Copy crate source
ADD bob_the_builder bob_the_builder
# Download the crates.io index using the new sparse protocol to improve performance
# and avoid OOM in the bob_the_builder build.
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
# Build bob binary
# Those RUSTFLAGS reduce binary size from 4MB to 600 KB
RUN cd bob_the_builder && RUSTFLAGS='-C link-arg=-s' cargo build --release
# Check bob binary
RUN cd bob_the_builder && \
ls -lh target/release/bob && \
(ldd target/release/bob || true) && \
mv target/release/bob /usr/local/bin
#
# rust-optimizer target
#
FROM rust:1.75.0-alpine as rust-optimizer
# Download the crates.io index using the new sparse protocol to improve performance
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
# Being required for gcc linking
RUN apk update && \
apk add --no-cache musl-dev
# Setup Rust with Wasm support
RUN rustup target add wasm32-unknown-unknown
# Add bob and wasm-opt
COPY --from=builder /usr/local/bin/bob /usr/local/bin
COPY --from=builder /usr/local/bin/wasm-opt /usr/local/bin
# Add script as entry point
COPY --from=builder /usr/local/bin/optimize.sh /usr/local/bin
# Assume we mount the source code in /code
WORKDIR /code
ENTRYPOINT ["optimize.sh"]
# Default argument when none is provided
CMD ["."]