From a1e6cbc63bd3f481c92d134704bfcff10d1662ec Mon Sep 17 00:00:00 2001 From: Janne Mareike Koschinski <janne@kuschku.de> Date: Thu, 16 Jun 2022 19:33:36 +0200 Subject: [PATCH] feat: use backported versions of seafile --- seahub/Dockerfile | 2 +- server/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/seahub/Dockerfile b/seahub/Dockerfile index 23077b5..c948630 100644 --- a/seahub/Dockerfile +++ b/seahub/Dockerfile @@ -4,7 +4,7 @@ RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN apt-get install -y nodejs WORKDIR /source -RUN git clone --single-branch --branch=feat/postgres-support https://github.com/justjanne/seahub.git +RUN git clone --single-branch --branch=feat/postgres-support-backported https://github.com/justjanne/seahub.git WORKDIR /source/seahub/frontend RUN npm install --force diff --git a/server/Dockerfile b/server/Dockerfile index 02b7e83..25fb8af 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -80,8 +80,8 @@ RUN pip install \ RUN mkdir /source WORKDIR /source RUN git clone https://github.com/haiwen/libevhtp.git -RUN git clone https://github.com/haiwen/libsearpc.git -RUN git clone --single-branch --branch=feat/postgres-support https://github.com/justjanne/seafile-server.git +RUN git clone --branch=v3.2-latest https://github.com/haiwen/libsearpc.git +RUN git clone --single-branch --branch=feat/postgres-support-backported https://github.com/justjanne/seafile-server.git WORKDIR /source/libevhtp RUN cmake -DEVHTP_DISABLE_SSL=ON -DEVHTP_BUILD_SHARED=OFF . -- GitLab