From 434a3d37074889460f789de81a05790af5bc17cb Mon Sep 17 00:00:00 2001 From: nickb <nickb@ssec.wisc.edu> Date: Thu, 21 Jul 2016 00:53:45 -0500 Subject: [PATCH] dockerhub's official gcc images have fortran support now so we can use them! --- Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 907b1aa..8d971f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,7 @@ # This image creates a common scientific build environment that includes: # gfortran, hdf4, hdf5, netcdf4 -# NOTE: nbearson/gfortran is a modified version of the official -# docker gcc image that includes gfortran. Now that the official -# image also includes gfortran, this line should change once a new build -# of the gcc image is pushed to dockerhub. -# to... -# FROM gcc -FROM nbearson/gfortran +FROM gcc:latest ENV ZLIB_VERSION 1.2.8 ENV JPEG_VERSION 6b -- GitLab