-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Adding glassfish nightly and nightly-web docker files #398
Conversation
….1 and 4.1.1-web image" Changed the jdk to 1.7 for 4.1.1 and 4.1.1 web
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.
Please fix the SSL configuration of the download location for the binaries.
GlassFish/nightly-web/Dockerfile
Outdated
# Setup password file | ||
# Enable DAS | ||
RUN yum -y install wget unzip java-1.8.0-openjdk-devel && \ | ||
wget --quiet --no-check-certificate $GLASSFISH_URL && \ |
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.
Please remove the --no-check-certificate
parameter to wget
. It is not acceptable to bypass SSL/TLS certificate validation when downloading binaries.
GlassFish/nightly/Dockerfile
Outdated
# Setup password file | ||
# Enable DAS | ||
RUN yum -y install wget unzip java-1.8.0-openjdk-devel && \ | ||
wget --quiet --no-check-certificate $GLASSFISH_URL && \ |
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.
Please remove the --no-check-certificate
parameter to wget
. It is not acceptable to bypass SSL/TLS certificate validation when downloading binaries.
GlassFish/nightly-web/Dockerfile
Outdated
# Install packages, download and extract GlassFish | ||
# Setup password file | ||
# Enable DAS | ||
RUN yum -y install wget unzip java-1.8.0-openjdk-devel && \ |
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.
You should remove the requirement for wget
and just use curl
instead which is already in the 7-slim
image.
GlassFish/nightly/Dockerfile
Outdated
# Install packages, download and extract GlassFish | ||
# Setup password file | ||
# Enable DAS | ||
RUN yum -y install wget unzip java-1.8.0-openjdk-devel && \ |
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.
You should remove the requirement for wget
and just use curl
instead which is already in the 7-slim
image.
No description provided.