Bake toxiproxy into CI image (#323)

Instead of downloading Toxiproxy everytime we run CI, we bake it into the CI docker image
This commit is contained in:
Mostafa Abdelraouf
2023-02-16 18:34:35 -06:00
committed by GitHub
parent 2b05ff4ee5
commit c69f461be5

View File

@@ -6,3 +6,5 @@ RUN cargo install cargo-binutils rustfilt && \
rustup component add llvm-tools-preview rustup component add llvm-tools-preview
RUN pip3 install psycopg2 && \ RUN pip3 install psycopg2 && \
sudo gem install bundler sudo gem install bundler
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 && \
sudo dpkg -i toxiproxy-2.4.0.deb