Files
2026-07-13 12:31:47 +08: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"]