rtcps 1.0.2

Rust TCP Scanner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust

WORKDIR /usr/src/app
COPY .cargo .cargo
COPY src src
COPY tests tests
COPY benches benches
COPY Cargo.toml Cargo.lock ./
COPY common_ports.csv common_ports.csv

RUN cargo build --tests

ENTRYPOINT cargo test