fselect/Dockerfile
2020-03-10 19:25:34 +03:00

9 lines
147 B
Docker

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