From 7989337964468069d611925b61c16327e7ecdd27 Mon Sep 17 00:00:00 2001 From: jaisonpjohn Date: Wed, 1 Aug 2018 07:08:35 -0500 Subject: [PATCH 1/3] git-lfs moved to it's own GitHub organization --- scripts/install_git_lfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_git_lfs.sh b/scripts/install_git_lfs.sh index ea3998e..a1cfa32 100755 --- a/scripts/install_git_lfs.sh +++ b/scripts/install_git_lfs.sh @@ -7,7 +7,7 @@ _main() { tmpdir="$(mktemp -d git_lfs_install.XXXXXX)" cd "$tmpdir" - curl -Lo git.tar.gz https://github.com/github/git-lfs/releases/download/v1.1.2/git-lfs-linux-amd64-1.1.2.tar.gz + curl -Lo git.tar.gz https://github.com/git-lfs/git-lfs/releases/download/v1.1.2/git-lfs-linux-amd64-1.1.2.tar.gz gunzip git.tar.gz tar xf git.tar mv git-lfs-1.1.2/git-lfs /usr/bin From 885651dfdef235f4880f3358f7dfb73572b4b891 Mon Sep 17 00:00:00 2001 From: jaisonpjohn Date: Wed, 1 Aug 2018 07:27:04 -0500 Subject: [PATCH 2/3] Updating the curl and git versions --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a37cc4..a3807ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM alpine:3.7 RUN apk --no-cache add \ bash=4.4.19-r1 \ ca-certificates=20171114-r0 \ - curl=7.60.0-r1 \ - git=2.15.0-r1 \ + curl=7.61.0-r0 \ + git=2.18.0-r0 \ jq=1.5-r5 \ openssh-client=7.5_p1-r8 From 677c72941df3c40d591ea2332cede59a65b04091 Mon Sep 17 00:00:00 2001 From: jaisonpjohn Date: Wed, 1 Aug 2018 07:48:09 -0500 Subject: [PATCH 3/3] Update Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a3807ed..77dc73b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -FROM alpine:3.7 +FROM alpine:3.8 RUN apk --no-cache add \ bash=4.4.19-r1 \ - ca-certificates=20171114-r0 \ + ca-certificates=20171114-r3 \ curl=7.61.0-r0 \ git=2.18.0-r0 \ - jq=1.5-r5 \ - openssh-client=7.5_p1-r8 + jq=1.6_rc1-r1 \ + openssh-client=7.7_p1-r2 # can't `git pull` unless we set these RUN git config --global user.email "git@localhost" && \