Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

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

at 106145d75ff4dc44f9ce3a2de38ab39bfbca6689 19 lines 416 B view raw
1FROM rust:1.91 2 3RUN apt-get update && apt-get install -y protobuf-compiler 4 5ADD ./proto/ /osprey/proto/ 6ADD ./osprey_coordinator/ /osprey/osprey_coordinator/ 7 8WORKDIR /osprey/osprey_coordinator 9 10 11RUN rustup show 12RUN rustc --version 13 14RUN cargo build --release 15 16RUN mv /osprey/osprey_coordinator/target/release/osprey_coordinator /osprey_coordinator_bin && \ 17 rm -rf /osprey 18 19ENTRYPOINT ["/osprey_coordinator_bin"]