adding a dockerfile building fish on a centos machine

This commit is contained in:
Bruno Pinto 2015-01-19 02:07:23 -02:00
parent 68efa5233c
commit 789a54222d

19
Dockerfile Normal file
View File

@ -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