From fe6328563c6b8aa896646ba639b9fbdc5f8721f1 Mon Sep 17 00:00:00 2001 From: Sean Dion Date: Thu, 30 Jul 2015 10:27:41 -0500 Subject: [PATCH] update baseimage --- Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 130b5dc..a28ce5c 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,9 @@ -FROM phusion/baseimage:0.9.16 +FROM linuxserver/baseimage MAINTAINER smdion RUN rm -rf /etc/service/sshd /etc/my_init.d/00_regen_ssh_host_keys.sh -ENV DEBIAN_FRONTEND noninteractive -ENV HOME /root ENV LC_ALL C.UTF-8 ENV LANG en_US.UTF-8 -ENV TERM screen + # Use baseimage-docker's init system CMD ["/sbin/my_init"] @@ -13,8 +11,6 @@ CMD ["/sbin/my_init"] # Install Dependencies RUN add-apt-repository ppa:mc3man/trusty-media RUN apt-get update - - RUN apt-get install -qy git mc ffmpeg python wget RUN apt-get clean && rm -rf /var/lib/apt/lists/* /var/tmp/* @@ -34,5 +30,3 @@ RUN chmod -v +x /etc/my_init.d/*.sh #Adduser RUN useradd -u 911 -U -s /bin/false abc RUN usermod -G users abc - -