You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
500 B

FROM rust:1.91-bullseye
ENV DEBIAN_FRONTEND=noninteractive
# Install OS deps needed for building some crates
RUN apt-get update && \
apt-get install -y --no-install-recommends \
pkg-config \
libssl-dev \
build-essential \
ca-certificates \
curl && \
rm -rf /var/lib/apt/lists/*
# Install cargo tools (compiled into the image so subsequent runs are fast)
RUN /usr/local/cargo/bin/cargo install cargo-audit cargo-deny
WORKDIR /workspace
CMD ["bash"]