diff --git a/apps/swh-graphql/entrypoint.sh b/apps/swh-graphql/entrypoint.sh
index 0c95fbc08a6e2063b1a580fb4d8d7ea7735db47e..2c70de5f8d71af109625a10576759a36066f91fd 100644
--- a/apps/swh-graphql/entrypoint.sh
+++ b/apps/swh-graphql/entrypoint.sh
@@ -3,21 +3,20 @@
 set -e
 
 case "$1" in
-"shell")
-  exec bash -i
-  ;;
-*)
-  echo Starting the swh-graphql API server
-
-  exec gunicorn --bind 0.0.0.0:${PORT} \
-    --log-level ${SWH_LOG_LEVEL:-INFO} \
-    --threads ${THREADS} \
-    --workers ${WORKERS} \
-    --timeout ${TIMEOUT} \
-    --statsd-host=${STATSD_HOST}:${STATSD_PORT} \
-    --statsd-prefix=${STATSD_SERVICE_TYPE} \
-    --config 'python:swh.graphql.gunicorn_config' \
-    --worker-class 'uvicorn.workers.UvicornWorker' \
-    'swh.graphql.server:make_app_from_configfile()'
-  ;;
+    "shell")
+        exec bash -i
+        ;;
+    *)
+        echo Starting the swh-graphql API server
+        exec gunicorn --bind 0.0.0.0:${PORT} \
+             --log-level ${SWH_LOG_LEVEL:-INFO} \
+             --threads ${THREADS} \
+             --workers ${WORKERS} \
+             --timeout ${TIMEOUT} \
+             --statsd-host=${STATSD_HOST}:${STATSD_PORT} \
+             --statsd-prefix=${STATSD_SERVICE_TYPE} \
+             --config 'python:swh.graphql.gunicorn_config' \
+             --worker-class 'uvicorn.workers.UvicornWorker' \
+             'swh.graphql.server:make_app_from_configfile()'
+        ;;
 esac