diff --git a/bin/steps/pipenv-python-version b/bin/steps/pipenv-python-version
index d35b213ae547e88cd594796410a9cb73af46474b..b434fefb9d471a1cd96dc9320d2bd55c83c8efae 100755
--- a/bin/steps/pipenv-python-version
+++ b/bin/steps/pipenv-python-version
@@ -12,7 +12,7 @@ if [[ -f $BUILD_DIR/Pipfile ]]; then
             set +e
             PYTHON=$(jq -r '._meta.requires.python_full_version' "$BUILD_DIR/Pipfile.lock")
             if [[ "$PYTHON" != "null" ]]; then
-                echo "$PYTHON" > "$BUILD_DIR/runtime.txt"
+                echo "python-$PYTHON" > "$BUILD_DIR/runtime.txt"
             fi
             set -e