diff --git a/config_other/Dockerfile b/config_other/Dockerfile index 6b3ba5ec..3700c90e 100644 --- a/config_other/Dockerfile +++ b/config_other/Dockerfile @@ -78,7 +78,7 @@ RUN ln -s /usr/bin/python3.5 /usr/bin/python3 # Build sql database RUN set -ex; \ - if ["$MYSQL_ENABLE" -eq 0]; then \ + if [ $MYSQL_ENABLE -eq 0 ]; then \ cd /var/www/haproxy-wi/app && \ ./create_db.py && \ chown apache:apache /var/www/haproxy-wi/app/haproxy-wi.db; \