File: Dockerfile

package info (click to toggle)
rust-num-cpus 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: makefile: 4
file content (9 lines) | stat: -rw-r--r-- 101 bytes parent folder | download | duplicates (53)
1
2
3
4
5
6
7
8
9
FROM rust:latest

WORKDIR /usr/num_cpus

COPY . .

RUN cargo build

CMD [ "cargo", "test", "--lib" ]