Dockerfile 484 B

12345678
  1. FROM rust:bullseye
  2. RUN apt-get update && apt-get install llvm-11 psmisc postgresql-contrib postgresql-client ruby ruby-dev libpq-dev python3 python3-pip lcov curl sudo iproute2 -y
  3. RUN cargo install cargo-binutils rustfilt
  4. RUN rustup component add llvm-tools-preview
  5. RUN sudo gem install bundler
  6. RUN wget -O toxiproxy-2.4.0.deb https://github.com/Shopify/toxiproxy/releases/download/v2.4.0/toxiproxy_2.4.0_linux_$(dpkg --print-architecture).deb && \
  7. sudo dpkg -i toxiproxy-2.4.0.deb