mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-19 19:28:58 +00: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" ]
|