12 lines
138 B
Docker
12 lines
138 B
Docker
|
FROM rust:1-buster
|
||
|
|
||
|
WORKDIR /
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN cargo install --path .
|
||
|
|
||
|
RUN cargo build && \
|
||
|
cargo run >> ./run.log
|
||
|
|
||
|
CMD ["cat", "run.log"]
|