Dockerfile 455 B

123456789101112131415
  1. FROM rust:1.93.0
  2. WORKDIR /home/lox
  3. ADD src/ ./src/
  4. ADD Cargo.toml Cargo.toml
  5. ADD tests/ ./tests/
  6. ADD run_tests_fast.sh .
  7. ADD Parsing-results ./Parsing-results
  8. ADD README.md README.md
  9. RUN apt update -y && apt upgrade -y
  10. RUN apt install -y numactl
  11. # We will do the processing in a separate step.
  12. #RUN apt install -y python3 python3-pip
  13. #RUN pip3 install -r Parsing-results/requirements.txt
  14. RUN cargo test --release build --features fast
  15. ENV SHELL=/bin/bash