mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
9cea5e0732
* Add .idea/ to git ignored directories. * Remove redundant newline. * Remove redundant newline. * Remove redundant newlines. * Remove redundant newline. * Remove redundant newline. * Add missing newline at end of file. * Remove redundant newline. * Remove redundant newlines.
18 lines
296 B
Docker
18 lines
296 B
Docker
FROM centos:latest
|
|
|
|
# Build dependency
|
|
RUN yum update -y &&\
|
|
yum install -y epel-release &&\
|
|
yum install -y clang cmake3 gcc-c++ make &&\
|
|
yum clean all
|
|
|
|
# Test dependency
|
|
RUN yum install -y expect vim-common
|
|
|
|
ADD . /src
|
|
WORKDIR /src
|
|
|
|
# Build fish
|
|
RUN cmake3 . &&\
|
|
make &&\
|
|
make install
|