crun 0.4.0

Run commands concurrently - a Rust port of concurrently
1
2
3
4
5
6
7
8
9
10
11
FROM rust:1-alpine

RUN apk add --no-cache musl-dev nodejs npm make && \
    rustup component add rustfmt clippy

WORKDIR /app
COPY . .

RUN cd tests/integration && npm ci

CMD ["make", "check", "test", "integration-test"]