diff --git a/Dockerfile b/Dockerfile index b09e641..405036e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -189,12 +189,15 @@ RUN git clone https://git.kongjian.xin:8443/cartodb/cartodb-4.29.git cartodb && service postgresql start && /bin/su postgres -c \ /tmp/cartodb_pgsql.sh && service postgresql stop +RUN cd /cartodb && npm install +# rm -r /tmp/npm-* /root/.npm && \ + +RUN cd /cartodb && perl -pi -e 's/gdal==1\.10\.0/gdal==2.2.2/' python_requirements.txt && \ + pip install --no-binary :all: -r python_requirements.txt + RUN cd /cartodb && \ - npm install && \ - rm -r /tmp/npm-* /root/.npm && \ - perl -pi -e 's/gdal==1\.10\.0/gdal==2.2.2/' python_requirements.txt && \ - pip install --no-binary :all: -r python_requirements.txt && \ - gem install bundler --version=1.17.3 && gem install compass archive-tar-minitar rack && \ + gem install bundler --version=1.17.3 && \ + gem install compass archive-tar-minitar rack && \ bundle update thin && \ /bin/bash -l -c 'bundle install' && \ cp config/grunt_development.json ./config/grunt_true.json && \