Dockerfile 604 B

1234567891011
  1. FROM library/node:lts-bookworm
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt update && \
  4. apt-get install -y nodejs nasm gdb unzip p7zip-full openjdk-17-jre wget python3 qemu-system-x86 git-core build-essential libc6-dev-i386-cross libc6-dev-i386 clang curl time
  5. RUN npm install -g jshint
  6. RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
  7. RUN /root/.cargo/bin/rustup toolchain install stable && \
  8. /root/.cargo/bin/rustup target add wasm32-unknown-unknown && \
  9. /root/.cargo/bin/rustup component add rustfmt-preview && \
  10. /root/.cargo/bin/rustup update && /root/.cargo/bin/rustup update nightly