lox/crates/lox-library/Dockerfile

11 lines
164 B
Docker
Raw Normal View History

FROM rust:1.56.0
WORKDIR /home/lox
ADD src/ ./src/
ADD Cargo.toml Cargo.toml
ADD tests/ ./tests/tests
ADD README.md README.md
RUN cargo build
ENV SHELL=/bin/bash