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