diff --git a/ci-templates/industrial-ci-templates.yml b/ci-templates/industrial-ci-templates.yml
index 0214c7a46ee18866c0ae2357c9df736fe24aea38..b07510ea2ea7fdeb1049cb123d0a6e8bb1f7f5ae 100644
--- a/ci-templates/industrial-ci-templates.yml
+++ b/ci-templates/industrial-ci-templates.yml
@@ -42,7 +42,7 @@
     # Run ddeploy
     - ddeploy --yaml ${DDEPLOY_YAML}
     # Get ID of image created by ddeploy
-    - DOCKER_ID=$$(docker images --format='{{.ID}}' | head -1)
+    - DOCKER_ID=$(docker images --format='{{.ID}}' | head -1)
     # Tag and push
     - docker tag $${DOCKER_ID} ${DOCKER_PUSH_REGISTRY}/${DOCKER_PUSH_NAME}:${DOCKER_PUSH_TAG}
     - docker push ${DOCKER_PUSH_REGISTRY}/${DOCKER_PUSH_NAME}:${DOCKER_PUSH_TAG}