
Significantly speeds up `npm run build:image` commands (as they don't need to compile anything anymore) and slightly reduces size of Docker images: - `squoosh-rotate`: 1.87GB -> 1.84GB - `squoosh-resize`: 2.02GB -> 1.85GB - `squoosh-hqx`: 2.06GB -> 1.9GB
13 lines
524 B
Docker
13 lines
524 B
Docker
FROM rust
|
|
RUN rustup target add wasm32-unknown-unknown
|
|
RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
RUN mkdir /opt/binaryen && \
|
|
curl -L https://github.com/WebAssembly/binaryen/releases/download/1.38.32/binaryen-1.38.32-x86-linux.tar.gz | tar -xzf - -C /opt/binaryen --strip 1
|
|
|
|
RUN mkdir /opt/wabt && \
|
|
curl -L https://github.com/WebAssembly/wabt/releases/download/1.0.11/wabt-1.0.11-linux.tar.gz | tar -xzf - -C /opt/wabt --strip 1
|
|
|
|
ENV PATH="/opt/binaryen:/opt/wabt:${PATH}"
|
|
WORKDIR /src
|