diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..e907e95a1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM centos:latest + +# Build dependency +RUN yum update -y &&\ + yum install -y autoconf automake 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 +