summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 0066941d866c54d2ff7671ce35236b48e6c4151a (plain)
1
2
3
4
5
6
7
8
FROM rust:latest

WORKDIR /usr/src/fselect
COPY . .

RUN cargo install --locked --path .

CMD ["cargo", "test", "--locked" , "--verbose", "--all"]