File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ OTHER_MOUNTS ?=
1313
1414# base images w/ or w/o CUDA
1515ifeq ($(CUDA ) ,n)
16- BASE_IMAGE ?=ubuntu:18 .04
16+ BASE_IMAGE ?=ubuntu:20 .04
1717 DEP_TAG_NAME ?=gnu7-mpich314-nocuda
1818else
1919 BASE_IMAGE ?=nvidia/cuda:10.2-devel-ubuntu18.04
Original file line number Diff line number Diff line change @@ -25,7 +25,9 @@ FROM $MPI_IMAGE AS mpi_image
2525
2626FROM $BASE_IMAGE AS fv3gfs-environment
2727
28- RUN apt-get update && apt-get install -y \
28+ RUN apt-get update && \
29+ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata && \
30+ apt-get install -y \
2931 wget \
3032 gcc \
3133 libtool-bin \
@@ -59,9 +61,6 @@ RUN git config --global http.sslverify false && \
5961# # Setup environment for Serialbox
6062# #---------------------------------------------------------------------------------
6163FROM fv3gfs-environment as fv3gfs-environment-serialbox
62- # set TZ
63- ENV DEBIAN_FRONTEND=noninteractive TZ=US/Pacific
64- RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
6564
6665# install dependencies for serialbox
6766RUN apt-get update && apt-get install -y \
You can’t perform that action at this time.
0 commit comments