9 lines
147 B
Docker
9 lines
147 B
Docker
FROM rust:latest
|
|
|
|
WORKDIR /usr/src/fselect
|
|
COPY . .
|
|
|
|
RUN cargo install --locked --path .
|
|
|
|
CMD ["cargo", "test", "--locked" , "--verbose", "--all"]
|