From fe5f07f20a7f9399ae9bb8fa3a4fb3466c8cd33c Mon Sep 17 00:00:00 2001 From: "flow.gunso" Date: Thu, 18 Apr 2019 17:56:05 +0200 Subject: [PATCH] Rename with supervisord --- Dockerfile => Dockerfile.supervisord | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) rename Dockerfile => Dockerfile.supervisord (93%) diff --git a/Dockerfile b/Dockerfile.supervisord similarity index 93% rename from Dockerfile rename to Dockerfile.supervisord index 56d653f..1f4254d 100644 --- a/Dockerfile +++ b/Dockerfile.supervisord @@ -19,12 +19,10 @@ FROM debian:jessie-slim # Prevent the packages installation to halt. ENV DEBIAN_FRONTEND noninteractive -# Copy over the seafile repository. -COPY assets/seafile.list /etc/apt/sources.list.d/ - # Safely import Seafile APT key, then install both seafile-cli and supervisord. COPY utils/build/import-seafile-apt-key.sh / -RUN /bin/bash /import-seafile-apt-key.sh ;\ +RUN echo "deb http://deb.seadrive.org jessie main" > /etc/apt/source.list.d/seafile.list ;\ + /bin/bash /import-seafile-apt-key.sh ;\ apt-get update ;\ apt-get install \ -o Dpkg::Options::="--force-confold" \