From b67744c3901c7b203967cc41156e8b12c8eb5428 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Thu, 28 May 2020 00:17:24 -0400 Subject: [PATCH] install nano in tools container (#285) tools often need simple editing done inside the tools container for debugging purposes, and vim is much bigger than nano --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 00b248eb..08cb51b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -100,6 +100,7 @@ RUN set -eux ;\ wget \ git \ less \ + nano \ gnupg2 `# TODO: not sure why gnupg2 is needed` ;\ curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - ;\ /bin/bash -c 'source /etc/os-release && echo "deb http://apt.postgresql.org/pub/repos/apt/ ${VERSION_CODENAME:?}-pgdg main ${PG_MAJOR:?}" > /etc/apt/sources.list.d/pgdg.list' ;\