We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What would you like to be added:
juicefs/sdk/python/Dockerfile.builder
The current version is:
FROM centos/python-38-centos7 USER 0 RUN curl -fsSL https://autoinstall.plesk.com/PSA_18.0.62/examiners/repository_check.sh | bash -s -- update >/dev/null && \ yum install -y make gcc && \ cd /tmp && \ curl -L https://static.juicefs.com/misc/go1.20.14.linux-amd64.tar.gz -o go1.20.14.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go1.20.14.linux-amd64.tar.gz && \ rm go1.20.14.linux-amd64.tar.gz && \ ln -s /usr/local/go/bin/go /usr/bin/go && \ python3 -m pip install --upgrade pip && \ python3 -m pip install --upgrade setuptools && \ pip install wheel build
The version I suggest is:
FROM golang:1.24 RUN apt update && \ apt install -y --no-install-recommends \ git \ make \ gcc \ python3 \ python3-pip \ python3-setuptools \ python3-wheel \ python3-build \ python3-venv \ ca-certificates \ && \ apt clean && \ rm -rf /var/lib/apt/lists/*
There is a repository_check.sh script in the old file, I am not sure if it must be keep?
repository_check.sh
The text was updated successfully, but these errors were encountered:
CodingPoeta
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
What would you like to be added:
juicefs/sdk/python/Dockerfile.builder
The current version is:
The version I suggest is:
There is a
repository_check.sh
script in the old file, I am not sure if it must be keep?The text was updated successfully, but these errors were encountered: