FROM centos:centos6 MAINTAINER Junegunn Choi # yum RUN yum install -y git gcc make tar glibc-devel glibc-devel.i686 \ ncurses-devel ncurses-static ncurses-devel.i686 \ gpm-devel gpm-static libgcc.i686 # Install Go 1.4 RUN cd / && curl \ https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz | \ tar -xz && mv go go1.4 ENV GOPATH /go ENV GOROOT /go1.4 ENV PATH /go1.4/bin:$PATH # For i386 build RUN cd $GOROOT/src && GOARCH=386 ./make.bash # Volume VOLUME /go # Default CMD CMD cd /go/src/github.com/junegunn/fzf/src && /bin/bash