-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
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
automate OL7 updates #487
base: jbr21.631
Are you sure you want to change the base?
automate OL7 updates #487
Conversation
- modify scripts for building images from Oracle Linux 7 - update jb/build/VerifyDependencies.java to check libraries have no dependency on symbols from glibc version higher than 2.17
devtoolset-10-binutils-2.35-5.el7.4 \ | ||
devtoolset-10-gcc-10.2.1-11.2.0.2.el7 \ | ||
devtoolset-10-gcc-c++-10.2.1-11.2.0.2.el7 | ||
RUN yum -y install \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's best to have as little RUN commands as possible to reduce the number of layers and get a smaller image.
COPY scl.repo /etc/yum.repos.d/ | ||
|
||
# Install the necessary build tools | ||
RUN yum -y update; \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's combine operations with &&
rather than ';
. Otherwise it's easy to miss an error generated by an earlier command.
@@ -0,0 +1,57 @@ | |||
# NOTE: This Dockerfile is meant to be used from the mkdocker_64.sh script. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mkdocker_64.sh -> mkdocker_x64.sh
BOOT_JDK_REMOTE_FILE=zulu17.30.15-ca-jdk17.0.1-linux_aarch64.tar.gz | ||
BOOT_JDK_SHA=4d9c9116eb0cdd2d7fb220d6d27059f4bf1b7e95cc93d5512bd8ce3791af86c7 | ||
BOOT_JDK_LOCAL_FILE=boot_jdk.tar.gz | ||
echo "ULN username:"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should be no need for ;
at the end of these lines
No description provided.