Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
curl=7.60.0-r1 \
git=2.15.0-r1 \
jq=1.5-r5 \
openssh-client=7.5_p1-r8
ca-certificates=20171114-r3 \
curl=7.61.0-r0 \
git=2.18.0-r0 \
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" && \
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_git_lfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down