Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
FROM alpine:edge
FROM alpine:3.14.0

WORKDIR /goaccess

ARG build_deps="build-base ncurses-dev autoconf automake git gettext-dev geoip-dev wget zlib-dev bzip2-dev"
ARG runtime_deps="tini ncurses libintl gettext openssl-dev geoip zlib libbz2"

RUN apk add --no-cache -u $runtime_deps $build_deps && \
/etc/periodic/monthly/geoip && \
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was an update of geoip database. Alpine maintainer decided to delete update script from package because valid MaxMind license is now a must have for automated updates. Not sure if you can get goaccess working without properly updated geodb.

git clone https://github.com/allinurl/goaccess /goaccess && \
wget -nv http://fallabs.com/tokyocabinet/tokyocabinet-1.4.48.tar.gz -O - | tar zxf - && \
cd tokyocabinet-1.4.48 && \
Expand Down