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