From 22709e46eca5eae95dd52ab6d844f822f5afa033 Mon Sep 17 00:00:00 2001 From: Olivier Sallou Date: Thu, 31 Jan 2019 12:07:59 +0100 Subject: [PATCH] update base debian image, removing unneeded stuff --- .../debian-stretch-backports/Dockerfile | 36 +++---------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/biocontainers/debian-stretch-backports/Dockerfile b/biocontainers/debian-stretch-backports/Dockerfile index d7711841f..272afb5f8 100644 --- a/biocontainers/debian-stretch-backports/Dockerfile +++ b/biocontainers/debian-stretch-backports/Dockerfile @@ -1,7 +1,7 @@ FROM debian:stable-backports LABEL base.image="debian:stable-backports" -LABEL version=1 +LABEL version=2 LABEL software="Biocontainers debian based image" LABEL software.version="debian-stretch-backports" LABEL about.home="http://biocontainers.pro" @@ -16,36 +16,10 @@ RUN mkdir /data /config RUN apt-get clean all && \ apt-get update && \ apt-get upgrade -y && \ - apt-get install -y \ - autotools-dev \ - automake \ - cmake \ - curl \ - grep \ - sed \ - dpkg \ - fuse \ - git \ - wget \ - zip \ - build-essential \ - pkg-config \ - python \ - python-dev \ - python-pip \ - bzip2 \ - ca-certificates \ - libglib2.0-0 \ - libxext6 \ - libsm6 \ - libxrender1 \ - git \ - mercurial \ - subversion \ - zlib1g-dev && \ - apt-get clean && \ - apt-get purge && \ - rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + apt-get clean && \ + apt-get purge && \ + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + # Add user biodocker with password biodocker RUN groupadd fuse && \