Skip to content

Commit 657b6f3

Browse files
committed
push docker image to ghcr.io
1 parent 1bbc285 commit 657b6f3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
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 }}

docker/Dockerfile_manylinux_2_28_x86_64

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
FROM 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 && \

0 commit comments

Comments
 (0)