From 758c0d199140a0d30abce1e3eeb194160955ca07 Mon Sep 17 00:00:00 2001 From: zhongjin Date: Thu, 11 May 2023 19:39:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20'Dockerfile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 66aa163..cc6a688 100644 --- a/Dockerfile +++ b/Dockerfile @@ -164,14 +164,14 @@ RUN service postgresql start && /bin/su postgres -c \ ADD ./cartodb_pgsql.sh /tmp/cartodb_pgsql.sh # Install CartoDB API -RUN git clone git://github.com/CartoDB/CartoDB-SQL-API.git && \ +RUN git clone https://github.com/CartoDB/CartoDB-SQL-API.git && \ cd CartoDB-SQL-API && \ git checkout $SQLAPI_VERSION && \ npm install && \ mkdir logs # Install Windshaft -RUN git clone git://github.com/CartoDB/Windshaft-cartodb.git && \ +RUN git clone https://github.com/CartoDB/Windshaft-cartodb.git && \ cd Windshaft-cartodb && \ git checkout $WINDSHAFT_VERSION && \ npm install && \