File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
smoke-tests/images/servlet/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ RUN groupadd -r jboss -g 1001 && useradd -u 1001 -r -g jboss -m -d /opt/jboss -s
1414# Set the working directory to jboss' user home directory
1515WORKDIR /opt/jboss
1616
17+ # latest eclipse-temurin docker images have removed curl in favor of wget (https://github.com/adoptium/containers/issues/630)
18+ # but ibm-semeru-runtimes docker images lack wget
19+ RUN apt-get -y install wget
20+
1721# Specify the user which should be used to execute all commands below
1822USER jboss
1923
@@ -22,10 +26,6 @@ ENV WILDFLY_VERSION=${version}
2226ENV DOWNLOAD_URL=${baseDownloadUrl}.tar.gz
2327ENV JBOSS_HOME /opt/jboss/wildfly
2428
25- # latest eclipse-temurin docker images have removed curl in favor of wget (https://github.com/adoptium/containers/issues/630)
26- # but ibm-semeru-runtimes docker images lack wget
27- RUN apt-get -y install wget
28-
2929USER root
3030RUN echo curl -O -L $DOWNLOAD_URL
3131# Add the WildFly distribution to /opt, and make wildfly the owner of the extracted tar content
You can’t perform that action at this time.
0 commit comments