Skip to content
Open
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ OTHER_MOUNTS ?=

# base images w/ or w/o CUDA
ifeq ($(CUDA),n)
BASE_IMAGE ?=ubuntu:18.04
BASE_IMAGE ?=ubuntu:20.04
DEP_TAG_NAME ?=gnu7-mpich314-nocuda
else
BASE_IMAGE ?=nvidia/cuda:10.2-devel-ubuntu18.04
Expand Down
7 changes: 3 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ FROM $MPI_IMAGE AS mpi_image

FROM $BASE_IMAGE AS fv3gfs-environment

RUN apt-get update && apt-get install -y \
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata && \
apt-get install -y \
wget \
gcc \
libtool-bin \
Expand Down Expand Up @@ -59,9 +61,6 @@ RUN git config --global http.sslverify false && \
## Setup environment for Serialbox
##---------------------------------------------------------------------------------
FROM fv3gfs-environment as fv3gfs-environment-serialbox
# set TZ
ENV DEBIAN_FRONTEND=noninteractive TZ=US/Pacific
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# install dependencies for serialbox
RUN apt-get update && apt-get install -y \
Expand Down