From 40a3e6898dc2b8378b77bbbc6259f497ec7c50d5 Mon Sep 17 00:00:00 2001 From: Jacob Blain Christen Date: Wed, 8 Apr 2020 10:55:57 -0700 Subject: [PATCH] base: add tzdata and ncurses-terminfo Address #103 by allowing installations to set timezone, e.g. for `America/Phoenix`: ```bash ln -vs /usr/share/zoneinfo/America/Phoenix /etc/localtime echo 'America/Phoenix' > /etc/timezone ``` Address an issue caused by Alpine upstream refactoring terminfo packaging with ncurses. --- images/00-base/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/00-base/Dockerfile b/images/00-base/Dockerfile index 17811ce8..1dbaf49e 100644 --- a/images/00-base/Dockerfile +++ b/images/00-base/Dockerfile @@ -37,6 +37,7 @@ RUN apk --no-cache add \ mdadm-udev \ multipath-tools \ ncurses \ + ncurses-terminfo \ nfs-utils \ open-iscsi \ openrc \ @@ -50,6 +51,7 @@ RUN apk --no-cache add \ strace \ sudo \ tar \ + tzdata \ util-linux \ vim \ xz \