diff options
| -rw-r--r-- | Bison/3.8.2/Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Bison/3.8.2/Dockerfile b/Bison/3.8.2/Dockerfile new file mode 100644 index 0000000..ca0e9d7 --- /dev/null +++ b/Bison/3.8.2/Dockerfile @@ -0,0 +1,19 @@ +FROM alpine +RUN apk update && apk add \ + m4 \ + make \ + gcc \ + musl-dev \ + wget +RUN wget https://ftp.gnu.org/gnu/bison/bison-3.8.2.tar.gz +RUN tar -xf bison-3.8.2.tar.gz +WORKDIR /bison-3.8.2 +ARG PREFIX=/opt/spm/bison-3.8.2 +RUN ./configure \ + --prefix=$PREFIX \ + --disable-rpath \ + --enable-relocatable \ + --disable-nls \ + CFLAGS='-ffunction-sections -fdata-sections -Os' +RUN make -j$(nproc --all) +RUN make install |
