fzf/src/Dockerfile.centos

22 lines
415 B
Docker
Raw Normal View History

2015-01-05 17:04:06 +00:00
FROM centos:centos7
MAINTAINER Junegunn Choi <junegunn.c@gmail.com>
# yum
RUN yum install -y git gcc make tar ncurses-devel
# Install Go 1.4
RUN cd / && curl \
2015-03-01 02:49:11 +00:00
https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz | \
2015-01-05 17:04:06 +00:00
tar -xz && mv go go1.4
ENV GOPATH /go
ENV GOROOT /go1.4
ENV PATH /go1.4/bin:$PATH
# Volume
2015-01-11 05:19:50 +00:00
VOLUME /go
2015-01-05 17:04:06 +00:00
# Default CMD
CMD cd /go/src/github.com/junegunn/fzf/src && /bin/bash