Skip to content

Commit edc3bcf

Browse files
committed
Add missing build dependencies for aalib compilation
- Add ncurses-dev for terminal/console output support - Add libx11-dev and libxext-dev for X11 window system support - Add slang-dev for S-Lang terminal library support - Add autoconf, automake, and libtool for build system configuration These dependencies are required for aalib's ./configure script to run successfully on Alpine Linux.
1 parent 84fab6f commit edc3bcf

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Dockerfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
FROM alpine:3.19 as build
2-
RUN apk add --no-cache wget make gcc musl-dev curl
2+
RUN apk add --no-cache \
3+
wget \
4+
make \
5+
gcc \
6+
musl-dev \
7+
curl \
8+
ncurses-dev \
9+
libx11-dev \
10+
libxext-dev \
11+
slang-dev \
12+
autoconf \
13+
automake \
14+
libtool
315
RUN wget https://sourceforge.net/projects/aa-project/files/aa-lib/1.4rc5/aalib-1.4rc5.tar.gz/download
416
RUN tar -xzf download && rm download
517
WORKDIR /aalib-1.4.0

0 commit comments

Comments
 (0)