Closed dritter closed 5 years ago
Looks good to me. Though I cannot speak for 4.3.11 since the centos image throws a segfault on running yum, bash or sh (dash works). I think that's a local problem with my machine.
Currently the centos:6
image seems to be broken (also for a colleague). The centos:7
image works.
Hmm. What exactly do you mean by saying the image is "broken"? Is it not possible to start the docker container? Or is just P9K broken inside the container? Thinking about it, that is only there because of historical reasons. Our new minimum system requirement is ZSH 5.1..
As I said, I (and my colleague) get segfaults for starting various programs inside the container. We both use Debian (different version I think).
And since I can run the version with the label 7 from dockerhub. I assume the latest image from dockerub is faulty. Could be my system though.
❱ docker run --rm -it centos:7 /bin/bash
[root@3c19cabe14ad /]# ^C
[root@3c19cabe14ad /]# exit
^[[A% ❱ docker run --rm -it centos:6 /bin/bash
❱ echo $?
139
❱ docker run --rm -it centos:6 /bin/dash
# yum
Segmentation fault (core dumped)
# echo $?
139
# /bin/bash
Segmentation fault (core dumped)
# echo $?
139
# %
Alright. I merged it. Thanks for the review @Syphdias .
The Dockerfiles break regularly because of distros releasing patches for ZSH and it seems to be impossible to install a fuzzy version of ZSH (like 5.6.2-*) with
apt-get
. This PR switches toapt
that has that ability.//cc @Syphdias