This commit is contained in:
Jackson Delahunt 2019-07-23 14:47:46 +10:00
parent b06abc84b8
commit 4b54e0b2f4

View file

@ -44,7 +44,6 @@ RUN apt-get update -qq && \
docker.io \
feh \
figlet \
fzf \
g++ \
gcc \
git \
@ -141,6 +140,10 @@ RUN apt-get update -qq && \
RUN curl -fsSL "https://github.com/docker/compose/releases/download/1.25.0-rc1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
chmod +x /usr/local/bin/docker-compose
# Install fzf
RUN git clone --depth 1 https://github.com/junegunn/fzf.git $HOME/.local/bin/fzf && \
$HOME/.local/bin/fzf/install --bin
# Install go
RUN add-apt-repository ppa:longsleep/golang-backports && \
apt-get update -qq && \