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
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,17 @@ RUN cd /root \
&& rm -fr /root/openssl* \
&& true

# Build/install git-2.8.0
RUN cd /root \
&& wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.8.0.tar.xz \
&& tar xf git-2.8.0.tar.xz \
&& cd git-2.8.0 \
&& make configure \
&& ./configure --prefix=/git-2.8 \
&& make install \
&& rm -fr /root/git* \
&& true

# Build/install git-2.17.1
RUN cd /root \
&& wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.17.1.tar.xz \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL := bash

DOCKER_USER := ingy
DOCKER_NAME := bash-testing
DOCKER_TAG := 0.0.4
DOCKER_TAG := 0.0.5
DOCKER_IMAGE := $(DOCKER_USER)/$(DOCKER_NAME):$(DOCKER_TAG)

build:
Expand Down