lotabout.skim/test.dockerfile
LoricAndre 6d0c310bea
test: use insta for applicable integration tests, making them cross-p… (#903)
* 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
2026-01-21 15:41:20 +01:00

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"]