diff --git a/for_tests/Dockerfile b/for_tests/Dockerfile
index ec961d18db2c3d932f4343b952d916f5ad99d140..60e309b6fb488814e4db75cec59ee1021189bcd0 100644
--- a/for_tests/Dockerfile
+++ b/for_tests/Dockerfile
@@ -60,12 +60,14 @@ RUN make clean &&\
     make &&\
     make install
 
+
 # Install FastTree
 WORKDIR /tmp
 RUN wget http://www.microbesonline.org/fasttree/FastTree.c &&\
     gcc -DOPENMP -fopenmp -DUSE_DOUBLE -Wall -O3 -finline-functions -funroll-loops -o FastTreeMP FastTree.c -lm &&\
     ln -s /tmp/FastTreeMP /usr/local/bin
 
+
 # Install FastME
 WORKDIR /tmp
 RUN apt-get install -y automake  &&\
@@ -75,6 +77,7 @@ RUN ./configure &&\
     make &&\
     make install
 
+
 # Install quicktree
 WORKDIR /tmp
 RUN git clone https://github.com/tseemann/quicktree