Update and rename Dockerfile.debian-10 to Dockerfile.debian-12

This commit is contained in:
Gerardo O 2024-04-19 21:03:58 -05:00 committed by GitHub
parent 5c4ce9b2d7
commit c80ae92e44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,22 +1,17 @@
# Used to have all compile dependencies isolated in a container image.
FROM debian:10
FROM debian:12
RUN apt-get update -qqq
RUN apt-get install -yqqq \
autoconf \
build-essential \
clang \
gettext \
libmaxminddb-dev \
RUN apt update -qqq
RUN apt install -y \
libncurses-dev \
libssl-dev \
linux-headers-amd64 \
libncursesw5-dev \
libgeoip-dev \
pkg-config \
libmaxminddb-dev \
build-essential \
autoconf \
gettext \
autopoint
# GoAccess
WORKDIR /goaccess
ENTRYPOINT ["./build-dynamic.sh"]