2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-13 12:43:43 +00:00
fish-shell/Dockerfile

20 lines
311 B
Text
Raw Normal View History

FROM centos:latest
# Build dependency
RUN yum update -y &&\
2015-01-19 16:51:22 -02: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