Dockerfile 351 B

123456789
  1. FROM ubuntu:20.04
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. #the above line is avoid interaction
  4. RUN apt update && apt install -y wget git build-essential net-tools iproute2 iperf iputils-ping cargo numactl time m4
  5. WORKDIR /root
  6. COPY . ramen
  7. WORKDIR /root/ramen
  8. RUN cargo update -p clap@4.4.7 --precise 4.1.4
  9. RUN cargo build --release --example=bench_doram