webhook-template/Dockerfile
2023-09-13 11:46:03 -04:00

12 lines
138 B
Docker

FROM rust:1-buster
WORKDIR /
COPY . .
RUN cargo install --path .
RUN cargo build && \
cargo run >> ./run.log
CMD ["cat", "run.log"]