Skip to content

Commit

Permalink
add more system deps for pip containers
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Feb 12, 2024
1 parent 12e7aad commit b8d3c77
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .devcontainer/rapids.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,23 @@ FROM ${BASE} as pip-base

RUN apt update -y \
&& DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
# C++ build tools
doxygen \
graphviz \
# C++ test dependencies
libgmock-dev \
libgtest-dev \
# needed by libcudf_kafka
librdkafka-dev \
# cuML/cuGraph dependencies
libblas-dev \
liblapack-dev \
# needed by libcuspatial
sqlite3 libsqlite3-dev libtiff-dev libcurl4-openssl-dev \
libgdal-dev \
sqlite3 \
libsqlite3-dev \
libtiff-dev \
libcurl4-openssl-dev \
&& rm -rf /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/*;

ENV DEFAULT_VIRTUAL_ENV=rapids
Expand Down

0 comments on commit b8d3c77

Please sign in to comment.