mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
* test: use insta for applicable integration tests, making them cross-platform * fix: remove @cmd from insta tests * fix: remove @cmd from insta tests * fix: use printf instead of echo
11 lines
238 B
Docker
11 lines
238 B
Docker
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", "--features", "test-utils"]
|