lox/crates/lox-library/Dockerfile

16 lines
370 B
Docker
Raw Normal View History

FROM rust:1.56.0
WORKDIR /home/lox
ADD src/ ./src/
ADD Cargo.toml Cargo.toml
2022-08-17 10:20:12 -04:00
ADD tests/ ./tests/
ADD run_tests_fast.sh .
ADD Parsing-results ./Parsing-results
ADD README.md README.md
RUN apt-get update -y
RUN apt-get install -y python3 python3-pip
RUN pip3 install pandas
RUN pip3 install numpy
RUN pip3 install matplotlib
2022-08-17 10:20:12 -04:00
RUN cargo build --release
ENV SHELL=/bin/bash