baipiao-bot-rust 0.2.1

A simple rust bot based on GitHub Action, total free, no server required
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust AS builder
COPY . /baipiao-bot-rust
WORKDIR /baipiao-bot-rust
RUN cargo build --release --example comment

FROM debian
MAINTAINER longfangsong@icloud.com
RUN apt update && apt install -y libssl-dev ca-certificates
COPY --from=builder /baipiao-bot-rust/target/release/examples/comment /
WORKDIR /
ENTRYPOINT ["/comment"]