Skip to content

Commit

Permalink
add nano and ping into base image
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantony committed Jun 2, 2022
1 parent 411a1a4 commit b94980c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
ARG GO_VERSION=go1.18.3.linux-amd64

# Install packages
RUN apt-get update --fix-missing && apt-get install -qq \
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq \
dialog \
apt-utils \
curl \
Expand All @@ -26,7 +26,10 @@ RUN apt-get update --fix-missing && apt-get install -qq \
gnupg-agent \
libarchive-tools \
openssh-client \
software-properties-common
iputils-ping \
nano \
software-properties-common \
&& rm -rf /var/lib/apt/lists/*

# Install Docker CLI
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
Expand Down

0 comments on commit b94980c

Please sign in to comment.