webhook_bridge/docker/webhook_bridge_development/Dockerfile
2024-09-28 23:20:35 -04:00

7 lines
274 B
Docker

FROM rustlang/rust:nightly-alpine3.20 AS builder
RUN apk add --no-cache musl-dev pkgconfig libressl3.8-libssl libressl-dev
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
RUN rustup component add rustfmt
RUN rustup component add clippy