Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ubuntu/Dockerfile.buildenv.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get install -y g++
RUN apt-get install -y libc-dev
RUN apt-get install -y python3.13-dev
RUN apt-get install -y libmpich-dev
RUN apt-get install -y libboost-all-dev
RUN apt-get install -y libboost-dev
RUN apt-get install -y scons

RUN apt-get clean
Expand Down
1 change: 0 additions & 1 deletion ubuntu/Dockerfile.runtime.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ RUN apt-get install -y python3.13-dev # Provides libpython3.13.so
RUN apt-get install -y python3.13-venv # Provides ensurepip
RUN apt-get install -y mpich
RUN apt-get install -y libsnappy1v5
RUN apt-get install -y libboost-all-dev # Provides libmpi_cxx.so (???)

RUN apt-get install -y nano

Expand Down
3 changes: 1 addition & 2 deletions ubuntu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Python 3.13 (via `deadsnakes` PPA), SCons, and the system packages needed to com
| `libc-dev` | Linux headers |
| `python3.13-dev` | Python headers |
| `libmpich-dev` | MPI runtime and headers |
| `libboost-all-dev` | Boost libraries |
| `libboost-dev` | Boost headers |

---

Expand All @@ -41,4 +41,3 @@ Minimal Ubuntu 22.04 image for running EMOD simulations (without build tooling).
| `python3.13-venv` | Python 3.13 virtual environments (deadsnakes PPA) |
| `mpich` | MPI runtime |
| `libsnappy1v5` | Snappy compression runtime |
| `libboost-all-dev` | Shouldn't need this but it's providing MPI stuff |