Update gitignore to ignore additional files and folders 13/10613/5
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Fri, 9 Apr 2021 20:12:47 +0000 (22:12 +0200)
committerguzman <jmguzman@whitestack.com>
Tue, 24 Aug 2021 15:24:30 +0000 (17:24 +0200)
Change-Id: Ic2c5ee4f77bd2f742e6f962dba3464c4d7e857ff
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
.gitignore
Dockerfile

index 3dee5c4..7bd56de 100644 (file)
@@ -16,14 +16,22 @@ venv
 .tox
 
 *.pyc
+*.pyo
 .cache
+.tox
 
 #IDEs
 .idea
 .project
 .pydevproject
 .settings/
+.vscode
 
+# Unit test / coverage reports
+.coverage
+cover
+coverage.xml
+nosetests.xml
 
 #Generated folders when building the deb package locally
 debian/osm-imdocs.install
index c811fb7..90b7f94 100644 (file)
@@ -35,6 +35,6 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
 RUN python3 -m easy_install pip==21.0.1
 RUN pip3 install tox==3.22.0
 
-RUN DEBIAN_FRONTEND=noninteractive apt -y install wget build-essential dh-make \
-                                            openjdk-8-jdk maven
+RUN DEBIAN_FRONTEND=noninteractive apt-get -y install wget build-essential dh-make \
+                                              openjdk-8-jdk maven
 RUN update-java-alternatives --set /usr/lib/jvm/java-1.8.0-openjdk-amd64