This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone-docker-runner.git
The following commit(s) were added to refs/heads/master by this push:
new 4cf2ac2 HDDS-14526. Upgrade Rocky Linux to 9.7 (#55)
4cf2ac2 is described below
commit 4cf2ac2b4f86efeed2fefcdf4ea3aecd9c206ff5
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Fri Jan 30 11:21:09 2026 +0100
HDDS-14526. Upgrade Rocky Linux to 9.7 (#55)
---
Dockerfile | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index cca1cc8..9740c7b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,7 @@
FROM golang:1.17.8-buster AS go
RUN go install github.com/rexray/gocsi/csc@latest
-FROM rockylinux:9.3
+FROM rockylinux/rockylinux:9
RUN set -eux ; \
dnf install -y \
bzip2 \
@@ -40,7 +40,7 @@ RUN set -eux ; \
zlib \
&& dnf clean all \
&& ln -sf /usr/bin/python3 /usr/bin/python
-RUN sudo python3 -m pip install --upgrade pip
+RUN python3 -m pip install --upgrade pip
# CSI / k8s / fuse / goofys dependency
COPY --from=go /go/bin/csc /usr/bin/csc
@@ -101,13 +101,13 @@ ENV BYTEMAN_HOME=/opt/byteman
RUN cd /tmp && \
curl -L -o byteman.zip
https://downloads.jboss.org/byteman/${BYTEMAN_VERSION}/byteman-download-${BYTEMAN_VERSION}-bin.zip
&& \
unzip -j -d byteman byteman.zip && \
- sudo mkdir -p ${BYTEMAN_HOME}/lib && \
- sudo mv byteman/byteman.jar byteman/byteman-submit.jar
${BYTEMAN_HOME}/lib/ && \
- sudo mv byteman/bmsubmit.sh /usr/local/bin/bmsubmit && \
- sudo chmod +x /usr/local/bin/bmsubmit && \
- sudo rm -rf byteman.zip byteman && \
- sudo chmod -R a+rX ${BYTEMAN_HOME} && \
- sudo ln -s ${BYTEMAN_HOME}/lib/byteman.jar /opt/byteman.jar
+ mkdir -p ${BYTEMAN_HOME}/lib && \
+ mv byteman/byteman.jar byteman/byteman-submit.jar ${BYTEMAN_HOME}/lib/ && \
+ mv byteman/bmsubmit.sh /usr/local/bin/bmsubmit && \
+ chmod +x /usr/local/bin/bmsubmit && \
+ rm -rf byteman.zip byteman && \
+ chmod -R a+rX ${BYTEMAN_HOME} && \
+ ln -s ${BYTEMAN_HOME}/lib/byteman.jar /opt/byteman.jar
#async profiler for development profiling
RUN set -eux ; \
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]