lox/crates/lox-library/Dockerfile

9 lines
167 B
Docker

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