Skip to content

Commit 49ad819

Browse files
committed
curl -> wget
1 parent f446d72 commit 49ad819

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ ENV DOWNLOAD_URL=${baseDownloadUrl}.tar.gz
2323
ENV JBOSS_HOME /opt/jboss/wildfly
2424

2525
USER root
26-
RUN echo curl -O -L $DOWNLOAD_URL
2726
# Add the WildFly distribution to /opt, and make wildfly the owner of the extracted tar content
2827
# Make sure the distribution is available from a well-known place
2928
RUN cd $HOME \
30-
&& curl -O -L $DOWNLOAD_URL \
29+
&& wget $DOWNLOAD_URL \
3130
&& tar xf wildfly-$WILDFLY_VERSION.tar.gz \
3231
&& mv $HOME/wildfly-$WILDFLY_VERSION $JBOSS_HOME \
3332
&& rm wildfly-$WILDFLY_VERSION.tar.gz \

0 commit comments

Comments
 (0)