mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-03 06:31:12 -03:00
Dockerfile: move to CMake
This commit is contained in:
@@ -2,7 +2,7 @@ FROM centos:latest
|
||||
|
||||
# Build dependency
|
||||
RUN yum update -y &&\
|
||||
yum install -y autoconf automake clang gcc-c++ make ncurses-devel &&\
|
||||
yum install -y clang cmake gcc-c++ make ncurses-devel &&\
|
||||
yum clean all
|
||||
|
||||
# Test dependency
|
||||
@@ -12,8 +12,7 @@ ADD . /src
|
||||
WORKDIR /src
|
||||
|
||||
# Build fish
|
||||
RUN autoreconf &&\
|
||||
./configure &&\
|
||||
RUN cmake . &&\
|
||||
make &&\
|
||||
make install
|
||||
|
||||
|
||||
Reference in New Issue
Block a user