You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM alpine:3.17
|
|
|
|
RUN apk update && apk add rust cargo openssl-dev
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
RUN cargo install --index https://git.raptorpond.com/henine/_cargo-index.git rulebot
|
|
|
|
CMD ["rulebot"] |