Skip to content

Commit

Permalink
Fix: change PYTHON_CMD to python3.12 in all docker files (#1220)
Browse files Browse the repository at this point in the history
* change PYTHON_CMD to python3.12 in all docker files

Signed-off-by: Aryan Rajoria <[email protected]>

* adding /usr/bin

Signed-off-by: Aryan Rajoria <[email protected]>

* python version error fixed in all docker files

Signed-off-by: Aryan Rajoria <[email protected]>

---------

Signed-off-by: Aryan Rajoria <[email protected]>
  • Loading branch information
aryan-rajoria authored Jul 7, 2024
1 parent e556616 commit 2fe092e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ ENV GOPATH=/opt/app-root/go \
MAVEN_HOME="/opt/maven/${MAVEN_VERSION}" \
GRADLE_HOME="/opt/gradle/${GRADLE_VERSION}" \
SBT_HOME="/opt/sbt/${SBT_VERSION}" \
PYTHON_CMD=python3 \
PYTHON_VERSION=3.12 \
PYTHON_CMD=/usr/bin/python${PYTHON_VERSION} \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING="utf-8" \
COMPOSER_ALLOW_SUPERUSER=1 \
Expand Down
3 changes: 2 additions & 1 deletion ci/Dockerfile-bun
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ ENV GOPATH=/opt/app-root/go \
MAVEN_HOME="/opt/maven/${MAVEN_VERSION}" \
GRADLE_HOME="/opt/gradle/${GRADLE_VERSION}" \
SBT_HOME="/opt/sbt/${SBT_VERSION}" \
PYTHON_CMD=python3 \
PYTHON_VERSION=3.12 \
PYTHON_CMD=/usr/bin/python${PYTHON_VERSION} \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING="utf-8" \
COMPOSER_ALLOW_SUPERUSER=1 \
Expand Down
3 changes: 2 additions & 1 deletion ci/Dockerfile-deno
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ ENV GOPATH=/opt/app-root/go \
MAVEN_HOME="/opt/maven/${MAVEN_VERSION}" \
GRADLE_HOME="/opt/gradle/${GRADLE_VERSION}" \
SBT_HOME="/opt/sbt/${SBT_VERSION}" \
PYTHON_CMD=python3 \
PYTHON_VERSION=3.12 \
PYTHON_CMD=/usr/bin/python${PYTHON_VERSION} \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING="utf-8" \
COMPOSER_ALLOW_SUPERUSER=1 \
Expand Down
3 changes: 2 additions & 1 deletion ci/Dockerfile-ppc64
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ ENV GOPATH=/opt/app-root/go \
MAVEN_HOME="/opt/maven/${MAVEN_VERSION}" \
GRADLE_HOME="/opt/gradle/${GRADLE_VERSION}" \
SBT_HOME="/opt/sbt/${SBT_VERSION}" \
PYTHON_CMD=python3 \
PYTHON_VERSION=3.12 \
PYTHON_CMD=/usr/bin/python${PYTHON_VERSION} \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING="utf-8" \
COMPOSER_ALLOW_SUPERUSER=1 \
Expand Down

0 comments on commit 2fe092e

Please sign in to comment.