Skip to content

Commit

Permalink
tnav container
Browse files Browse the repository at this point in the history
  • Loading branch information
hmeiland committed Apr 3, 2024
1 parent 3d5de7c commit e3729b9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions environments/amlhpc-ubuntu2204-tnav/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM ubuntu:22.04 as builder

COPY tNavigator-setup-Linux-64.sh .
RUN export TERM=linux; chmod +x tNavigator-setup-Linux-64.sh; ./tNavigator-setup-Linux-64.sh --noexec

FROM ubuntu:22.04

RUN apt-get update && \
apt-get install -y --no-install-recommends \
locales && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/* && \
locale-gen en_US.utf8

RUN mkdir -p /opt/tNavigator-Linux-64

COPY --from=builder ./tNavigator-Linux-64/tNavigator-con /opt/tNavigator-Linux-64/
COPY --from=builder ./tNavigator-Linux-64/tNavigator-con-mpi /opt/tNavigator-Linux-64/

0 comments on commit e3729b9

Please sign in to comment.