mirror of
https://github.com/allinurl/goaccess.git
synced 2025-06-18 14:35:34 -04:00
18 lines
319 B
Docker
18 lines
319 B
Docker
# Used to have all compile dependencies isolated in a container image.
|
|
FROM debian:12
|
|
|
|
RUN apt update -qqq
|
|
RUN apt install -y \
|
|
libncurses-dev \
|
|
libssl-dev \
|
|
libmaxminddb-dev \
|
|
build-essential \
|
|
autoconf \
|
|
gettext \
|
|
autopoint
|
|
|
|
# GoAccess
|
|
WORKDIR /goaccess
|
|
|
|
ENTRYPOINT ["./build-dynamic.sh"]
|