From adb2f1000b6e2c23a5315abefdb8ed77c797e9cb Mon Sep 17 00:00:00 2001
From: David Schmitz <schmitz@lrz.de>
Date: Wed, 21 Aug 2019 10:53:01 +0200
Subject: [PATCH] Dockerfile upd

---
 Dockerfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index f1f8ae04..9ee3831b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,11 +3,11 @@ FROM debian:stretch
 
 ENV LC_ALL="C.UTF-8"
 
-RUN if [ -z "$NOAPT" ]; then apt-get -yqq update; fi
-RUN if [ -z "$NOAPT" ]; then apt-get -yqq upgrade; fi
+RUN if [ -z "$NOAPT" ]; then apt-get -yqq update; else true; fi
+RUN if [ -z "$NOAPT" ]; then apt-get -yqq upgrade; else true; fi
 
-RUN if [ -z "$NOAPT" ]; then apt-get -yqq install virtualenv python python-dev vim git gcc libevent-dev libxml2-dev libxslt-dev patch beanstalkd mariadb-server libmariadb-dev libmariadbclient-dev-compat sqlite3; fi
-RUN if [ -z "$NOAPT" ]; then apt-get -yqq install procps; fi
+RUN if [ -z "$NOAPT" ]; then apt-get -yqq install virtualenv python python-dev vim git gcc libevent-dev libxml2-dev libxslt-dev patch beanstalkd mariadb-server libmariadb-dev libmariadbclient-dev-compat sqlite3; else true; fi
+RUN if [ -z "$NOAPT" ]; then apt-get -yqq install procps; else true; fi
 
 # RUN echo "create database fod;" | mysql -u root
 
-- 
GitLab