diff --git a/Dockerfile b/Dockerfile
index 00c98747d4c9ad3ebc2cd27796963452a47e7896..164516cf817255b69faf42c4321cf633de794daa 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,9 +5,13 @@ ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
 ENV PATH /opt/conda/bin:$PATH
 
 RUN apt-get update --fix-missing && \
-    apt-get install -y wget bzip2 ca-certificates curl git \  # for miniconda
-    texlive-full python-pygments gnuplot make \  # for TeX
-    build-essential \  # for gcc
+    apt-get install -y \
+    # for miniconda
+    wget bzip2 ca-certificates curl git \
+    # for TeX
+    texlive-full python-pygments gnuplot make \
+    # for gcc
+    build-essential \
     && \
     apt-get clean && \
     rm -rf /var/lib/apt/lists/*