fish-shell/Dockerfile

20 lines
311 B
Docker
Raw Normal View History

FROM centos:latest
# Build dependency
RUN yum update -y &&\
2015-01-19 18:51:22 +00:00
yum install -y autoconf automake bc clang gcc-c++ make ncurses-devel &&\
yum clean all
# Test dependency
RUN yum install -y expect vim-common
ADD . /src
WORKDIR /src
# Build fish
RUN autoreconf &&\
./configure &&\
make &&\
make install