Dockerfile 304 B

12345678
  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 build --release --example=bench_doram