2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-20 08:54:00 +00:00
fish-shell/Dockerfile

19 lines
275 B
Docker
Raw Normal View History

FROM centos:latest
# Build dependency
RUN yum update -y &&\
2019-02-27 13:05:50 +00:00
yum install -y clang cmake gcc-c++ make ncurses-devel &&\
yum clean all
# Test dependency
RUN yum install -y expect vim-common
ADD . /src
WORKDIR /src
# Build fish
2019-02-27 13:05:50 +00:00
RUN cmake . &&\
make &&\
make install