add dockerfile for testing on bash:3.2

pull/58/head v2.4.11-rc3
Simon Let 6 years ago
parent 2b7dfc13d9
commit 08323d7c18
  1. 12
      test/Dockefile_macoslike

@ -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…
Cancel
Save