mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 21:07:08 +08:00
Update Dockerfile for cmake3
This commit is contained in:
parent
2507162f80
commit
3c9f95594a
|
@ -2,7 +2,8 @@ FROM centos:latest
|
|||
|
||||
# Build dependency
|
||||
RUN yum update -y &&\
|
||||
yum install -y clang cmake gcc-c++ make ncurses-devel &&\
|
||||
yum install -y epel-release &&\
|
||||
yum install -y clang cmake3 gcc-c++ make ncurses-devel &&\
|
||||
yum clean all
|
||||
|
||||
# Test dependency
|
||||
|
@ -12,7 +13,7 @@ ADD . /src
|
|||
WORKDIR /src
|
||||
|
||||
# Build fish
|
||||
RUN cmake . &&\
|
||||
RUN cmake3 . &&\
|
||||
make &&\
|
||||
make install
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user