# Use ubuntu as base image
FROM ubuntu

# Extend it by installing new binaries
RUN apt update && apt install -y iputils-ping && apt clean

# Set home as default work directory
WORKDIR ~

# Set bash as entry point
CMD ["/bin/bash"]
