youtubebeat/vendor/github.com/elastic/beats/testing/environments/Dockerfile

9 lines
250 B
Docker
Raw Normal View History

2018-11-18 11:08:38 +01:00
# 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