mirror of https://github.com/curusarn/resh
parent
2b7dfc13d9
commit
08323d7c18
@ -0,0 +1,12 @@ |
|||||||
|
FROM debian:jessie |
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y wget tar gcc automake make bison flex curl |
||||||
|
RUN wget https://ftp.gnu.org/gnu/bash/bash-3.2.57.tar.gz && \ |
||||||
|
tar -xvzf bash-3.2.57.tar.gz && \ |
||||||
|
cd bash-3.2.57 && \ |
||||||
|
./configure && \ |
||||||
|
make && \ |
||||||
|
make install |
||||||
|
RUN echo /usr/local/bin/bash >> /etc/shells && chsh -s /usr/local/bin/bash |
||||||
|
|
||||||
|
CMD bash |
||||||
Loading…
Reference in new issue