aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
blob: 511ce928a043cab01a2b581a38f6b61ad1baee56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM centos:latest

# Build dependency
RUN yum update -y &&\
  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