mirror of
https://github.com/openharmony/third_party_rust_num_cpus.git
synced 2026-07-01 20:44:00 -04:00
10 lines
101 B
Docker
10 lines
101 B
Docker
FROM rust:latest
|
|
|
|
WORKDIR /usr/num_cpus
|
|
|
|
COPY . .
|
|
|
|
RUN cargo build
|
|
|
|
CMD [ "cargo", "test", "--lib" ]
|