# # Cartodb container # ubuntu:18.04 # FROM sverhoeven/cartodb LABEL maintainer="spacen onenetcom " # Configuring locales ENV DEBIAN_FRONTEND noninteractive RUN apt-get update ENV LANG en_US.UTF-8 ENV LANGUAGE en_US:en ENV LC_ALL en_US.UTF-8 ADD ./fonts/SourceHanSansCN-Light.otf /usr/share/fonts/SourceHanSansCN-Light.otf ADD ./fonts/SourceHanSerifCN-Regular.otf /usr/share/fonts/SourceHanSerifCN-Regular.otf ADD ./fonts/SourceHanSansCN-Regular.otf /usr/share/fonts/SourceHanSansCN-Regular.otf RUN apt-get install -y nano net-tools ca-certificates RUN rm -rf /cartodb RUN git clone https://git.kongjian.xin:8443/cartodb/cartodb-4.29.git cartodb && \ cd cartodb && \ npm install RUN cd cartodb && bundle exec grunt # 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 && \ # bundle update thin && \ # /bin/bash -l -c 'bundle install' && \ # cp config/grunt_development.json ./config/grunt_true.json && \ # /bin/bash -l -c 'bundle exec grunt' # && \ #rm -rf .git /root/.cache/pip node_modules RUN cd cartodb/config && \ cp app_config.yml.sample app_config.yml && \ cp database.yml.sample database.yml && \ cp grunt_production.json.sample grunt_production.json