mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 01:16:30 +00:00
9 lines
360 B
Docker
9 lines
360 B
Docker
FROM cimg/rust:1.62.0
|
|
RUN sudo apt-get update && \
|
|
sudo apt-get install -y psmisc postgresql-contrib-12 postgresql-client-12 ruby ruby-dev libpq-dev python3 python3-pip lcov llvm-11 && \
|
|
sudo apt-get upgrade curl
|
|
RUN cargo install cargo-binutils rustfilt && \
|
|
rustup component add llvm-tools-preview
|
|
RUN pip3 install psycopg2 && \
|
|
sudo gem install bundler
|