mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 21:21:15 -03:00
cleanup: delete unmaintained Dockerfile
This Dockerfile has been broken for quite a while now, at least since Rust is required for building fish. No one seems to have complained about it being broken, so there is no point in keeping it around. The `docker` directory contains several Dockerfiles which could be used instead. https://github.com/fish-shell/fish-shell/pull/12408#discussion_r2770432433 Closes #12435
This commit is contained in:
committed by
Johannes Altmanninger
parent
1f8cdf85b6
commit
74b104c9f6
18
Dockerfile
18
Dockerfile
@@ -1,18 +0,0 @@
|
||||
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
|
||||
Reference in New Issue
Block a user