Dockerfile.ci 583 B

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