From 16f58875224dbeb5de659843e969809c07759738 Mon Sep 17 00:00:00 2001 From: "flow.gunso" Date: Thu, 18 Apr 2019 23:10:41 +0200 Subject: [PATCH] Add the missing 's' to sources.list.d --- Dockerfile.cron | 4 ++-- Dockerfile.supervisord | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.cron b/Dockerfile.cron index 2713a36..7723c31 100644 --- a/Dockerfile.cron +++ b/Dockerfile.cron @@ -28,9 +28,9 @@ COPY utils/build/import-seafile-apt-key.sh / COPY assets/docker-entrypoint.sh /entrypoint.sh # Safely import Seafile APT key, then install both seafile-cli and supervisord. -RUN mkdir -p /etc/apt/source.list.d/ ;\ +RUN mkdir -p /etc/apt/sources.list.d/ ;\ echo "deb http://deb.seadrive.org jessie main" \ - > /etc/apt/source.list.d/seafile.list ;\ + > /etc/apt/sources.list.d/seafile.list ;\ bash /import-seafile-apt-key.sh ;\ apt-get update ;\ apt-get install \ diff --git a/Dockerfile.supervisord b/Dockerfile.supervisord index c13b15c..33a8d32 100644 --- a/Dockerfile.supervisord +++ b/Dockerfile.supervisord @@ -28,9 +28,9 @@ COPY utils/build/import-seafile-apt-key.sh / COPY assets/docker-entrypoint.sh /entrypoint.sh # Safely import Seafile APT key, then install both seafile-cli and supervisord. -RUN mkdir -p /etc/apt/source.list.d/ ;\ +RUN mkdir -p /etc/apt/sources.list.d/ ;\ echo "deb http://deb.seadrive.org jessie main" \ - > /etc/apt/source.list.d/seafile.list ;\ + > /etc/apt/sources.list.d/seafile.list ;\ /bin/bash /import-seafile-apt-key.sh ;\ apt-get update ;\ apt-get install \