webhook-template/Dockerfile

12 lines
138 B
Docker
Raw Permalink Normal View History

2023-09-13 11:46:03 -04:00
FROM rust:1-buster
WORKDIR /
COPY . .
RUN cargo install --path .
RUN cargo build && \
cargo run >> ./run.log
CMD ["cat", "run.log"]