A PLC Mirror written in Rust
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

dockerfile

+10
+10
Dockerfile
··· 1 + FROM rust:1.85-slim-bookworm AS builder 2 + WORKDIR /work 3 + RUN apt-get update && apt-get install -y libssl-dev pkg-config && rm -rf /var/lib/apt/lists/* 4 + COPY . . 5 + RUN cargo build --release 6 + 7 + FROM debian:bookworm-slim 8 + RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* 9 + COPY --from=builder /work/target/release/plc-mirror /usr/local/bin/plc-mirror 10 + CMD ["plc-mirror"]