forked from softprops/lambda-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
21 lines (20 loc) · 961 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM oursource/lambda-rust:latest
RUN curl https://musl.libc.org/releases/musl-latest.tar.gz -o musl-latest.tar.gz && \
tar xvfz musl-latest.tar.gz && cd musl-* && ./configure --prefix=/usr && make -j $(nproc) install && cd .. && \
. ~/.profile && \
rustup component add clippy rustfmt && \
rustup target add x86_64-unknown-linux-musl && \
yum -y install openssl-devel.x86_64 && \
cargo install --force cargo-make cargo-cache grass wasm-pack && \
yum -y remove openssl-devel.x86_64 && \
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh && \
curl --silent --location https://rpm.nodesource.com/setup_current.x | bash - && \
yum -y install nodejs && \
npm install -g serverless && \
cargo cache --version && \
cargo clippy --version && \
cargo fmt --version && \
cargo make --version && \
grass --version && \
wasm-pack --version && \
cargo cache --autoclean-expensive