FROM phusion/baseimage:bionic-1.0.0

ARG COUNTLY_PLUGINS=mobile,web,desktop,plugins,density,locale,browser,sources,views,enterpriseinfo,logger,systemlogs,populator,reports,crashes,push,star-rating,slipping-away-users,compare,server-stats,dbviewer,assistant,times-of-day,compliance-hub,video-intelligence-monetization,alerts,onboarding,consolidate
# Enterprise Edition:
#ARG COUNTLY_PLUGINS=mobile,web,desktop,plugins,density,locale,browser,sources,views,drill,funnels,retention_segments,flows,cohorts,surveys,remote-config,ab-testing,formulas,activity-map,concurrent_users,revenue,logger,systemlogs,populator,reports,crashes,push,geo,block,restrict,users,star-rating,slipping-away-users,compare,server-stats,assistant,dbviewer,crash_symbolication,crashes-jira,groups,white-labeling,alerts,times-of-day,compliance-hub,onboarding,active_users,performance-monitoring,config-transfer,consolidate,data-manager,hooks,dashboards

ARG COUNTLY_CONFIG_API_MONGODB_HOST=localhost
ARG COUNTLY_CONFIG_FRONTEND_MONGODB_HOST=localhost

CMD ["/sbin/my_init"]

## Setup Countly
ENV COUNTLY_CONTAINER="both" \
    COUNTLY_DEFAULT_PLUGINS="${COUNTLY_PLUGINS}" \
    COUNTLY_CONFIG_API_API_HOST="0.0.0.0" \
    COUNTLY_CONFIG_FRONTEND_WEB_HOST="0.0.0.0"

EXPOSE 80
USER root

WORKDIR /opt/countly
COPY . .

RUN useradd -r -M -U -d /opt/countly -s /bin/false countly && \
    apt-get update && \
    apt-get -y install \
        # standard
        build-essential libkrb5-dev git sqlite3 wget sudo \
        # nginx
        nginx \
        # puppeteer
        gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 \
        libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 \
        libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils \
        # push / nghttp2
        gcc g++ make binutils autoconf automake autotools-dev libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev \
        libevent-dev libjansson-dev libjemalloc-dev cython python3-dev python-setuptools && \
    # node
    wget -qO- https://deb.nodesource.com/setup_14.x | bash - && \
    # data_migration (mongo clients)
    wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | apt-key add - && \
    echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.4 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-4.4.list && \
    apt-get update && \
    apt-get -y install nodejs mongodb-org-shell mongodb-org-tools && \
    \
    # nghttp2
    (git clone https://github.com/nghttp2/nghttp2.git /tmp/nghttp2 --single-branch --branch=v1.30.0 --depth=1 && \
        cd /tmp/nghttp2 && \
        export CFLAGS="-g -O2 -fPIC" && export CPPFLAGS="-fPIC" && autoreconf -i && automake && autoconf && \
        ./configure --disable-examples --disable-app && make && make install && export CC="" && export CXX="") && \
    \
    # configs
    cp ./bin/config/nginx.server.conf /etc/nginx/sites-enabled/default && \
    cp ./bin/config/nginx.conf /etc/nginx/nginx.conf && \
    cp ./api/config.sample.js ./api/config.js && \
    cp ./frontend/express/config.sample.js ./frontend/express/config.js && \
    cp ./frontend/express/public/javascripts/countly/countly.config.sample.js ./frontend/express/public/javascripts/countly/countly.config.js && \
    \
    # npm dependencies
    ./bin/docker/modify.sh && \
    HOME=/tmp npm install --unsafe-perm && \
    ./bin/docker/preinstall.sh && \
    \
    # web sdk
    bash ./bin/scripts/detect.init.sh && \
    countly update sdk-web && \
    \
    # services and such
    mkdir -p /etc/my_init.d && cp ./bin/docker/postinstall.sh /etc/my_init.d/ && \
    mkdir /etc/service/nginx && \
    mkdir /etc/service/countly-api && \
    mkdir /etc/service/countly-dashboard && \
    echo "" >> /etc/nginx/nginx.conf && \
    echo "daemon off;" >> /etc/nginx/nginx.conf && \
    cp ./bin/commands/docker/nginx.sh /etc/service/nginx/run && \
    cp ./bin/commands/docker/countly-api.sh /etc/service/countly-api/run && \
    cp ./bin/commands/docker/countly-dashboard.sh /etc/service/countly-dashboard/run && \
    chown -R countly:countly /opt/countly && \
    # cleanup
    npm remove -y --no-save mocha nyc should supertest && \
    apt-get -y remove build-essential libkrb5-dev git sqlite3 wget \
        gcc g++ make binutils autoconf automake autotools-dev libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev libjansson-dev libjemalloc-dev cython python3-dev python-setuptools && \
    apt-get -y install gconf-service libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* /tmp/* /tmp/.??* /var/tmp/* /var/tmp/.??* ~/.npm ~/.cache && \

    # temporary to remove npm bug message
    mkdir /.npm && chown -R countly:countly /.npm

# USER 1001:0
