Skip to content

Commit 79fbe0b

Browse files
committed
try
1 parent d17e8d4 commit 79fbe0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

smoke-tests/images/servlet/src/wildfly.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
1515
WORKDIR /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
1822
USER jboss
1923

@@ -22,10 +26,6 @@ ENV WILDFLY_VERSION=${version}
2226
ENV DOWNLOAD_URL=${baseDownloadUrl}.tar.gz
2327
ENV 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-
2929
USER root
3030
RUN echo curl -O -L $DOWNLOAD_URL
3131
# Add the WildFly distribution to /opt, and make wildfly the owner of the extracted tar content

0 commit comments

Comments
 (0)