|
|
@ -4,8 +4,8 @@
|
|
|
|
FROM ubuntu:bionic
|
|
|
|
FROM ubuntu:bionic
|
|
|
|
|
|
|
|
|
|
|
|
# install some basic packages
|
|
|
|
# install some basic packages
|
|
|
|
RUN apt-get update \
|
|
|
|
RUN apt-get update
|
|
|
|
&& apt-get install -y --no-install-recommends \
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
|
|
build-essential \
|
|
|
|
build-essential \
|
|
|
|
curl \
|
|
|
|
curl \
|
|
|
|
git \
|
|
|
|
git \
|
|
|
@ -37,9 +37,8 @@ RUN apt-get update \
|
|
|
|
automake \
|
|
|
|
automake \
|
|
|
|
libtool \
|
|
|
|
libtool \
|
|
|
|
strace \
|
|
|
|
strace \
|
|
|
|
less \
|
|
|
|
less
|
|
|
|
libuv1-dev \
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# set to use our installed clang version
|
|
|
|
# set to use our installed clang version
|
|
|
|
RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-8 100
|
|
|
|
RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-8 100
|
|
|
@ -48,8 +47,7 @@ RUN update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm
|
|
|
|
# set LD_LIBRARY_PATH
|
|
|
|
# set LD_LIBRARY_PATH
|
|
|
|
ENV LD_LIBRARY_PATH=/usr/local/lib
|
|
|
|
ENV LD_LIBRARY_PATH=/usr/local/lib
|
|
|
|
|
|
|
|
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | \
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y
|
|
|
|
sh -s -- --default-toolchain stable -y
|
|
|
|
|
|
|
|
ENV PATH=/root/.cargo/bin:$PATH
|
|
|
|
ENV PATH=/root/.cargo/bin:$PATH
|
|
|
|
|
|
|
|
|
|
|
|
RUN rustup component add rustfmt
|
|
|
|
RUN rustup component add rustfmt
|
|
|
@ -57,8 +55,7 @@ RUN rustup target add wasm32-wasi
|
|
|
|
|
|
|
|
|
|
|
|
RUN cargo install --debug cargo-audit cargo-watch rsign2
|
|
|
|
RUN cargo install --debug cargo-audit cargo-watch rsign2
|
|
|
|
|
|
|
|
|
|
|
|
RUN curl -sS -L -O https://github.com/CraneStation/wasi-sdk/releases/download/wasi-sdk-7/wasi-sdk_7.0_amd64.deb \
|
|
|
|
RUN curl -sS -L -O https://github.com/CraneStation/wasi-sdk/releases/download/wasi-sdk-7/wasi-sdk_7.0_amd64.deb && dpkg -i wasi-sdk_7.0_amd64.deb && rm -f wasi-sdk_7.0_amd64.deb
|
|
|
|
&& dpkg -i wasi-sdk_7.0_amd64.deb && rm -f wasi-sdk_7.0_amd64.deb
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ENV WASI_SDK=/opt/wasi-sdk
|
|
|
|
ENV WASI_SDK=/opt/wasi-sdk
|
|
|
|
ENV PATH=/opt/sledge/bin:$PATH
|
|
|
|
ENV PATH=/opt/sledge/bin:$PATH
|
|
|
|