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

Add missing venv and update achlys dockerfile #74

Merged
merged 1 commit into from
May 17, 2024
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 models/achlys/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM linusseelinger/achlys-ubuntu
FROM achlys-ubuntu

RUN apt update && apt install -y inotify-tools && \
rm -rf /var/lib/apt/lists/*
Expand Down
4 changes: 3 additions & 1 deletion models/l2-sea/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM ubuntu:latest

RUN apt update && \
DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip gfortran liblapack-dev libblas-dev libomp-dev git && \
DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip python3-venv gfortran liblapack-dev libblas-dev libomp-dev git && \
python3 -m venv venv && . venv/bin/activate && \
pip install umbridge f90nml

RUN git clone https://github.com/MAORG-CNR-INM/NATO-AVT-331-L2-Sea-Benchmark.git
Expand All @@ -15,4 +16,5 @@ RUN mkdir -p /NATO-AVT-331-L2-Sea-Benchmark/examples/DTMB-5415/CPU000 && ln -s /
COPY umbridge-server.py /

CMD ulimit -s unlimited && \
. venv/bin/activate && \
python3 umbridge-server.py
Loading