Dockerfile 255 B

1234567
  1. FROM ubuntu:22.04
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. RUN apt update && apt install -y wget git build-essential net-tools iproute2 iperf iputils-ping libbsd-dev libboost-all-dev numactl time
  4. WORKDIR /root
  5. COPY . prac
  6. WORKDIR /root/prac
  7. RUN make -j `nproc`