Skip to content

Commit

Permalink
Fix wget/tar Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
corybolar committed Mar 14, 2018
1 parent 49d21a4 commit 589953f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ MAINTAINER cbpeckles

# get stuff from the interwebs
RUN yum -y install wget tar; yum clean all
RUN wget https://assets.nagios.com/downloads/nagiosxi/5/xi-5.4.13.tar.gz -O /tmp/xi-latest.tar.gz \
| tar xzC /tmp/nagiosxi
RUN mkdir /tmp/nagiosxi \
&& wget -qO- https://assets.nagios.com/downloads/nagiosxi/5/xi-5.4.13.tar.gz \
| tar xz -C /tmp/nagiosxi

# overwrite custom config file
ADD config.cfg xi-sys.cfg
Expand Down

0 comments on commit 589953f

Please sign in to comment.