Skip to content

Commit

Permalink
Adding Docker image with latest compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlconlin committed Mar 23, 2018
1 parent 68cc1fd commit 033edb9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions njoy/latest/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM debian:latest

LABEL maintainer="Jeremy Lloyd Conlin [email protected]"

RUN apt update \
&& apt upgrade -y \
&& apt install -y --force-yes gcc g++ gfortran clang make cmake git python3 \
&& update-alternatives --install /usr/bin/python python /usr/bin/python3 60

ENV CC /usr/bin/clang
ENV CXX /usr/bin/clang++
ENV FC /usr/bin/gfortran

ENTRYPOINT [ "/bin/bash" ]

0 comments on commit 033edb9

Please sign in to comment.