update rust mysql client integration test

This commit is contained in:
Stephanie You
2023-05-12 14:07:07 -07:00
parent ff7de18057
commit ed672aa5d4
4 changed files with 30 additions and 8 deletions

View File

@@ -38,8 +38,6 @@ RUN apt update -y && \
git \
ruby \
ruby-dev \
rustc \
cargo \
gem \
libc6 \
libgcc1 \
@@ -119,6 +117,10 @@ RUN gem install bundler -v 2.1.4 && bundle install
RUN Rscript -e 'install.packages(c("DBI", "RMySQL", "RMariaDB"), \
repos = c(RSPM="https://packagemanager.rstudio.com/cran/__linux__/focal/latest"))'
# install rust
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
# install postgres and psql
RUN service postgresql start