9 lines
195 B
Docker
9 lines
195 B
Docker
FROM allinurl/goaccess:1.10.2
|
|
|
|
RUN apk add --no-cache jq
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod 0755 /usr/local/bin/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|