You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by tu...@apache.org on 2020/12/13 10:37:59 UTC

[kibble] branch main updated: Install cloc in Dockerfile to fix git scanner (#110)

This is an automated email from the ASF dual-hosted git repository.

turbaszek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/kibble.git


The following commit(s) were added to refs/heads/main by this push:
     new 5bf37a8  Install cloc in Dockerfile to fix git scanner (#110)
5bf37a8 is described below

commit 5bf37a8c0db83c918fa476a3a1b653390026e169
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sun Dec 13 10:37:51 2020 +0000

    Install cloc in Dockerfile to fix git scanner (#110)
    
    Install cloc (https://github.com/AlDanial/cloc). `cloc` is a Prerequisite as mentioned in https://apache-kibble.readthedocs.io/en/latest/setup.html#installing-the-server
    Without it the count in the git scanner fails.
---
 Dockerfile.dev | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile.dev b/Dockerfile.dev
index db8243f..78500b6 100644
--- a/Dockerfile.dev
+++ b/Dockerfile.dev
@@ -19,7 +19,7 @@ FROM python:3.8-slim
 
 USER root
 RUN apt-get update
-RUN apt-get install -y gcc git unzip
+RUN apt-get install -y gcc git unzip cloc
 
 COPY . /kibble/