11 lines
164 B
Docker
11 lines
164 B
Docker
![]() |
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
|
||
|
|
||
|
|