pr_bot/Dockerfile

10 lines
168 B
Docker
Raw Normal View History

2023-08-04 19:55:08 +02:00
FROM rust as builder
WORKDIR /opt/build
RUN cargo install --path .
FROM alpine
COPY --from=builder /usr/local/cargo/bin/gitea-bot /bin/gitea-bot
RUN [ "gitea-bot" ]