fish-shell/Dockerfile
Dror Levin db1d694aec Remove bc from Dockerfile
As math is now a builtin bc is no longer required.
2019-01-13 18:29:15 +08:00

19 lines
308 B
Docker

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