File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 3434 context : docker
3535 file : docker/Dockerfile_manylinux_2_28_x86_64
3636 push : true
37- tags : virtualcell/manylinux_2_28_x86_64:${{ github.event.inputs.tag }}
37+ tags : ghcr.io/ virtualcell/manylinux_2_28_x86_64:${{ github.event.inputs.tag }}
Original file line number Diff line number Diff line change 11FROM quay.io/pypa/manylinux_2_28_x86_64
22
3- WORKDIR /opt
4-
53# install graalvm community edition
6- RUN curl -L -o graalvm.tar.gz https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-23.0.2/graalvm-community-jdk-23.0.2_linux-x64_bin.tar.gz && \
4+ RUN cd /opt && \
5+ curl -L -o graalvm.tar.gz https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-23.0.2/graalvm-community-jdk-23.0.2_linux-x64_bin.tar.gz && \
76 tar -xzf graalvm.tar.gz && \
87 export GRAALVM_HOME="$(cd "$(ls | grep "23.0.2" )" && pwd)" && \
98 echo "export JAVA_HOME=$GRAALVM_HOME" >> /root/.bashrc && \
109 echo "export GRAALVM_HOME=$GRAALVM_HOME" >> /root/.bashrc && \
1110 echo "export PATH=$GRAALVM_HOME/bin:\$PATH" >> /root/.bashrc
1211
1312# install Poetry
14- RUN curl -sSL https://install.python-poetry.org | python3 - && \
13+ RUN cd /opt && \
14+ curl -sSL https://install.python-poetry.org | python3 - && \
1515 echo "export PATH=/root/.local/bin:\$PATH" >> /root/.bashrc
1616
1717 # Install Maven
18- RUN curl -L -o apache-maven.tar.gz https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz && \
18+ RUN cd /opt && \
19+ curl -L -o apache-maven.tar.gz https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz && \
1920 tar -xzf apache-maven.tar.gz && \
2021 export MAVEN_HOME="$(cd "$(ls | grep "3.9.9" )" && pwd)" && \
2122 echo "export MAVEN_HOME=$MAVEN_HOME" >> /root/.bashrc && \
You can’t perform that action at this time.
0 commit comments