Skip to content

Commit

Permalink
add dockerfile for testing on bash:3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
curusarn committed Jan 17, 2020
1 parent 2b7dfc1 commit 08323d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/Dockefile_macoslike
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 08323d7

Please sign in to comment.