From a9935845731e139d34d5de61bd36fcfcc6c276e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Thu, 11 Jun 2015 23:43:20 +0200 Subject: [PATCH] use debian:wheezy as base image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- Dockerfile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a552ef4..5789db1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,15 @@ -FROM alpine:3.1 +FROM debian:wheezy -RUN apk --update add docker +RUN apt-get update && \ + apt-get -y upgrade && \ + apt-get -y install auditd ca-certificates curl gawk net-tools procps --no-install-recommends && \ + curl -sSL https://get.docker.com/ | sh && \ + apt-get -y purge git openssh* patch rsync* && \ + apt-get -y clean && \ + apt-get -y autoremove && \ + rm -rf /var/lib/apt/lists/* \ + /usr/share/doc /usr/share/doc-base \ + /usr/share/man /usr/share/locale /usr/share/zoneinfo RUN mkdir /docker-bench-security