skim 1.0.0-pre8

Fuzzy Finder in rust!
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:1-slim

RUN apt-get update && apt-get install -y tmux bsdmainutils && apt-get clean
COPY rust-toolchain.toml .

RUN cargo install cargo-nextest

COPY . .

CMD ["cargo", "nextest", "run", "--release"]