mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 17:36:28 +00:00
* Prepared stmt sharding s tests * len check * remove python test * latest rust * move that to debug for sure * Add the actual tests * latest image * Update tests/ruby/sharding_spec.rb
13 lines
583 B
Docker
13 lines
583 B
Docker
FROM cimg/rust:1.67.1
|
|
RUN sudo apt-get update && \
|
|
sudo apt-get install -y \
|
|
psmisc postgresql-contrib-14 postgresql-client-14 libpq-dev \
|
|
ruby ruby-dev python3 python3-pip \
|
|
lcov llvm-11 iproute2 && \
|
|
sudo apt-get upgrade curl && \
|
|
cargo install cargo-binutils rustfilt && \
|
|
rustup component add llvm-tools-preview && \
|
|
pip3 install psycopg2 && sudo gem install bundler && \
|
|
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 && \
|
|
sudo dpkg -i /tmp/toxiproxy-2.4.0.deb
|