Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[NFC] [devdeps] Enhance the development dependencies image by pre-installing regularly used tools #1964

Merged
merged 3 commits into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/build/devdeps.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ ENV PATH="${PATH}:/usr/local/cmake-3.26/bin"
# We must use h5py<3.11 because 3.11 doesn't include aarch64 Linux wheels.
# https://github.com/h5py/h5py/issues/2408
RUN apt-get update && apt-get install -y --no-install-recommends \
git ninja-build file \
git gdb ninja-build file lldb \
python3 python3-pip libpython3-dev \
&& python3 -m pip install --no-cache-dir \
lit pytest numpy \
fastapi uvicorn pydantic requests llvmlite \
pyspelling pymdown-extensions \
pyspelling pymdown-extensions yapf \
scipy==1.10.1 openfermionpyscf==0.5 'h5py<3.11' \
&& apt-get autoremove -y --purge && apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down
Loading