We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f446d72 commit 49ad819Copy full SHA for 49ad819
smoke-tests/images/servlet/src/wildfly.dockerfile
@@ -23,11 +23,10 @@ ENV DOWNLOAD_URL=${baseDownloadUrl}.tar.gz
23
ENV JBOSS_HOME /opt/jboss/wildfly
24
25
USER root
26
-RUN echo curl -O -L $DOWNLOAD_URL
27
# Add the WildFly distribution to /opt, and make wildfly the owner of the extracted tar content
28
# Make sure the distribution is available from a well-known place
29
RUN cd $HOME \
30
- && curl -O -L $DOWNLOAD_URL \
+ && wget $DOWNLOAD_URL \
31
&& tar xf wildfly-$WILDFLY_VERSION.tar.gz \
32
&& mv $HOME/wildfly-$WILDFLY_VERSION $JBOSS_HOME \
33
&& rm wildfly-$WILDFLY_VERSION.tar.gz \
0 commit comments