2017-03-15 09:54:31 +01:00

9 lines
250 B
Docker

# Basic debian file with curl, wget and nano installed to fetch files
# an update config files
FROM debian:latest
MAINTAINER Nicolas Ruflin <ruflin@elastic.co>
RUN apt-get update && \
apt-get install -y curl nano wget zip && \
apt-get clean