From c4f757ddc999eaea7907836c20cbf7bbd5844757 Mon Sep 17 00:00:00 2001 From: Ernesto Rode aka b-04 <70774887+b-04-e@users.noreply.github.com> Date: Wed, 17 Aug 2022 16:43:48 -0300 Subject: [PATCH] fix 2 errors fix error : make: *** [Makefile:2: one] Error 127 with FROM alpine:3.14.0 fix error: /bin/sh: /etc/periodic/monthly/geoip: not found deleting line 9 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 482a153..f75e674 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:edge +FROM alpine:3.14.0 WORKDIR /goaccess @@ -6,7 +6,6 @@ ARG build_deps="build-base ncurses-dev autoconf automake git gettext-dev geoip-d 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 && \ 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 && \