Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding ping #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

adding ping #20

wants to merge 1 commit into from

Conversation

rsignell-usgs
Copy link
Member

fixes #19

@@ -18,7 +18,8 @@ RUN wget https://get.docker.com -q -O /tmp/getdocker && \
chmod +x /tmp/getdocker && \
sh /tmp/getdocker && \
rm /tmp/getdocker && \
apt-get -y clean && apt-get -y autoremove
apt-get -y clean && apt-get -y autoremove && \
apt-get install iputils-ping
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd add this into line 21 so maybe line 21 changes to:

apt-get -y install iputils-ping && \
    apt-get -y clean && \
    apt-get -y autoremove

The Travis build failed because the -y flag needs to be included in the install command to automatically tell the installer that yes, you want this to install non-interactively.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Give users ping
2 participants