diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f96cde98..34191a18e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: - name: set matrix for build id: set-matrix run: | - json=$(python .github/commands/matrix) + json=$(python3 .github/commands/matrix) echo $json echo "matrix=$json" >> $GITHUB_OUTPUT diff --git a/contrib/build-docs b/contrib/build-docs index 59f43609a..f454416cd 100755 --- a/contrib/build-docs +++ b/contrib/build-docs @@ -125,7 +125,7 @@ main() { echo "====> Rebuild versions" if [[ -f "tmp/docs-build/versions.json" ]]; then - python contrib/sort-mkdocs-versions + python3 contrib/sort-mkdocs-versions else echo " No version file exists" fi diff --git a/contrib/release-dokku b/contrib/release-dokku index 2251fc28f..bcfcc40cf 100755 --- a/contrib/release-dokku +++ b/contrib/release-dokku @@ -232,7 +232,7 @@ fn-repo-update() { if [[ "$RELEASE" == 'patch' ]]; then fn-replace-version "$CURRENT_VERSION" "$NEXT_VERSION" docs/assets/versions.json else - versions=$(python -c 'import json,sys;d=json.load(sys.stdin);d["max-versions"].append("'"${NEXT_VERSION}"'"); print(json.dumps(d, indent=2, sort_keys=True))' docs/assets/versions.json git add docs/assets/versions.json fi diff --git a/docs/_build/entrypoint b/docs/_build/entrypoint index 7e842fb30..9d0148528 100755 --- a/docs/_build/entrypoint +++ b/docs/_build/entrypoint @@ -3,7 +3,7 @@ set -eo pipefail write-mkdocs() { if [[ -f /usr/src/source/contrib/write-mkdocs ]]; then - if ! python /usr/src/source/contrib/write-mkdocs; then + if ! python3 /usr/src/source/contrib/write-mkdocs; then exit 0 fi fi diff --git a/docs/networking/port-management.md b/docs/networking/port-management.md index 870551298..d30c34f3a 100644 --- a/docs/networking/port-management.md +++ b/docs/networking/port-management.md @@ -163,7 +163,7 @@ For example, if the Dokku installation is configured with the domain `dokku.me` ``` FROM ubuntu:24.04 EXPOSE 1234 -CMD python -m SimpleHTTPServer 1234 +CMD python3 -m SimpleHTTPServer 1234 ``` The application would be exposed to the user at `node-js-app.dokku.me:1234`. If this is not desired, the following application configuration may be applied: diff --git a/tests/unit/run_1.bats b/tests/unit/run_1.bats index 1ab4ee1dd..f84d9c0af 100644 --- a/tests/unit/run_1.bats +++ b/tests/unit/run_1.bats @@ -29,7 +29,7 @@ teardown() { echo "status: $status" assert_success - run /bin/bash -c "dokku --force --quiet run $TEST_APP python -V" + run /bin/bash -c "dokku --force --quiet run $TEST_APP python3 -V" echo "output: $output" echo "status: $status" assert_success