mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-22 05:17:59 +02:00
9 lines
218 B
Docker
9 lines
218 B
Docker
FROM alpine:3.17
|
|
RUN apk add --no-cache bison coreutils gcc libc-dev make
|
|
ncurses-dev libncurses5-dev libncursesw5-dev
|
|
WORKDIR /tmp/bash
|
|
COPY . .
|
|
RUN ./configure --enable-readline --with-curses
|
|
RUN make
|
|
RUN make tests
|