From 3bd804a3f522fc98070a43d0b9e3946bab52222b Mon Sep 17 00:00:00 2001 From: Harpo Date: Thu, 21 Jul 2022 14:11:09 -0700 Subject: [PATCH 1/3] Basic jumpbox dependencies --- jumpbox/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 jumpbox/Dockerfile diff --git a/jumpbox/Dockerfile b/jumpbox/Dockerfile new file mode 100644 index 0000000..d9f8560 --- /dev/null +++ b/jumpbox/Dockerfile @@ -0,0 +1,5 @@ +FROM ubuntu:latest +RUN apt update && apt install -y curl python3.10 python3-pip +RUN pip3 install -U pip + +COPY . . From f2f20aaea5eaa3bc8f0174544a75c9726b9fefa3 Mon Sep 17 00:00:00 2001 From: Harpo Date: Wed, 27 Jul 2022 10:27:26 -0700 Subject: [PATCH 2/3] Add postgresql to toolbox --- jumpbox/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jumpbox/Dockerfile b/jumpbox/Dockerfile index d9f8560..7b04f1a 100644 --- a/jumpbox/Dockerfile +++ b/jumpbox/Dockerfile @@ -1,5 +1,6 @@ FROM ubuntu:latest -RUN apt update && apt install -y curl python3.10 python3-pip +RUN apt update && apt-get install -y curl python3.10 python3-pip +RUN DEBIAN_FRONTEND=noninteractive apt-get install -y postgresql RUN pip3 install -U pip COPY . . From 2e5ddd17ce32455d514a92fb418ee76dfc06722a Mon Sep 17 00:00:00 2001 From: Harpo Date: Wed, 27 Jul 2022 10:27:47 -0700 Subject: [PATCH 3/3] Remove copy directive --- jumpbox/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jumpbox/Dockerfile b/jumpbox/Dockerfile index 7b04f1a..03fbddf 100644 --- a/jumpbox/Dockerfile +++ b/jumpbox/Dockerfile @@ -1,6 +1,5 @@ FROM ubuntu:latest + RUN apt update && apt-get install -y curl python3.10 python3-pip RUN DEBIAN_FRONTEND=noninteractive apt-get install -y postgresql RUN pip3 install -U pip - -COPY . .