We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a1e8c commit adfcc81Copy full SHA for adfcc81
1 file changed
packages/cli/src/lib/defaults/build-strategies/wasm/rust/image/Dockerfile.mustache
@@ -1,13 +1,12 @@
1
-FROM rust:1.65.0 as base
+FROM rust:1.66-alpine as base
2
3
# Install the wasm32 rust build target
4
RUN rustup target add wasm32-unknown-unknown
5
6
WORKDIR /build-deps
7
8
# Install curl
9
-RUN apt-get update
10
-RUN apt-get -y install curl clang llvm build-essential
+RUN apk add curl build-base pkgconfig openssl-dev bash
11
12
# Install wasm-opt
13
RUN curl -L https://github.com/WebAssembly/binaryen/releases/download/version_101/binaryen-version_101-x86_64-linux.tar.gz | tar -xz \
0 commit comments