From d5fb22ea8a15ac3e5577d59ad5fbe9cc508307da Mon Sep 17 00:00:00 2001 From: conor Date: Wed, 14 Aug 2019 12:49:55 +0200 Subject: [PATCH] add git http creds helper --- Dockerfile | 1 + git-askpass-helper.sh | 3 +++ 2 files changed, 4 insertions(+) create mode 100755 git-askpass-helper.sh diff --git a/Dockerfile b/Dockerfile index 98670dc..aedc309 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,6 @@ RUN wget -O /tmp/terraform.zip https://releases.hashicorp.com/terraform/0.12.6/t RUN unzip /tmp/terraform.zip RUN mv terraform /usr/bin/ +COPY git-askpass-helper.sh /usr/bin/git-pass COPY shared-creds /root/.aws/credentials COPY atmos.py /usr/bin/atmos \ No newline at end of file diff --git a/git-askpass-helper.sh b/git-askpass-helper.sh new file mode 100755 index 0000000..4bf610c --- /dev/null +++ b/git-askpass-helper.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +echo ${GIT_PASSWORD} \ No newline at end of file