lox/crates/lox-library/Dockerfile

9 lines
167 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 README.md README.md
2022-08-17 10:20:12 -04:00
RUN cargo build --release
ENV SHELL=/bin/bash