Skip to content

Commit

Permalink
Fix docker installation
Browse files Browse the repository at this point in the history
  • Loading branch information
apontzen committed Jun 13, 2024
1 parent 1fe7e9c commit fca1a3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genetIC/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ubuntu:20.04
FROM ubuntu:24.04
COPY ./ /genetIC

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y g++-12 libgsl-dev libfftw3-dev python3-pip pkg-config libhdf5-serial-dev
RUN pip3 install numpy pynbody
RUN pip3 install pynbody --break-system-packages # should use a venv but this is simpler for now
RUN cd /genetIC && make clean && make

ENTRYPOINT ["/genetIC/genetIC"]

0 comments on commit fca1a3b

Please sign in to comment.