From 6eadca40417ff3ed11f5fe5daa0e92799e01e527 Mon Sep 17 00:00:00 2001 From: Maks Snegov Date: Sat, 30 Jan 2021 22:39:34 +0300 Subject: [PATCH] Update seafile repo URL --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b017675..b154e18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM python:3-slim RUN apt-get update && apt-get install gnupg curl -y && rm -rf /var/lib/apt/lists/* -RUN curl https://linux-clients.seafile.com/seafile.key | apt-key add - && \ - echo 'deb [arch=amd64] http://linux-clients.seafile.com/seafile-deb/buster/ stable main' > /etc/apt/sources.list.d/seafile.list && \ +RUN curl https://linux-clients.seafile.com/seafile.asc | apt-key add - && \ + echo 'deb [arch=amd64] https://linux-clients.seafile.com/seafile-deb/buster/ stable main' > /etc/apt/sources.list.d/seafile.list && \ apt-get update -y && \ apt-get install -y seafile-cli procps grep && \ rm -rf /var/lib/apt/lists/*