Skip to content
Snippets Groups Projects
Select Git revision
  • 320d960076e402a6d17264491a1c94fc2246f833
  • dev default protected
  • release/1.9.1 protected
  • pini-1.8-docker
  • pini-sync-onlypeers
  • duniter-v2s-issue-123-industrialize-releases
  • feature/build-aarch64-nodejs16
  • release/1.8 protected
  • pini-docker
  • ci_tags
  • fix/1448/1.8/txs_not_stored
  • feature/node-20
  • fix/1441/node_summary_with_storage
  • fix/1442/improve_bma_tx_history
  • feature/wotwizard-1.8
  • release/1.9 protected
  • 1.7 protected
  • feature/docker-set-latest protected
  • feature/fast-docker-build-1.8.4
  • fast-docker-build protected
  • feature/dump-distance
  • v1.8.7 protected
  • v1.8.7-rc4 protected
  • v1.8.7-rc3 protected
  • v1.8.7-rc2 protected
  • v1.8.7-rc1 protected
  • v1.8.6 protected
  • v1.7.23 protected
  • v1.8.5 protected
  • v1.8.4 protected
  • v1.8.3 protected
  • v1.8.2 protected
  • v1.8.1 protected
  • v1.8.0 protected
  • v1.8.0-rc1 protected
  • v1.8.0-beta5 protected
  • v1.8.0-beta4 protected
  • v1.8.0-beta3 protected
  • v1.8.0-beta2 protected
  • v1.8.0-beta protected
  • v1.7.21 protected
41 results

wotserver.js

Blame
  • Dockerfile 1.16 KiB
    FROM  node:10-alpine
    LABEL maintainer="benoit [dot] lavenier [at] e-is [dot] pro"
    LABEL version="1.6.3"
    LABEL description="Cesium Wallet for Ğ1 libre currency"
    
    ARG CESIUM_VER="1.6.3"
    
    ENV DEBIAN_FRONTEND=noninteractive \
        NODE_VERSION=10.20.0 \
        NPM_VERSION=6.14.4 \
        YARN_VERSION=1.22.4 \
        IONIC_CLI_VERSION=6.6.0 \
        CORDOVA_VERSION=8.1.2 \
        GRADLE_VERSION=4.10.3 \
        GULP_VERSION=3.9.1
    
    # Install basics
    RUN apk update && \
            apk add ca-certificates wget curl git && \
            update-ca-certificates && \
        apk add --update python make g++
    
    # create group and user cesium
    RUN addgroup -S -g 1111 cesium && \
    	adduser -SD -h /cesium -G cesium -u 1111 cesium
    #RUN mkdir -p /var/lib/cesium /etc/cesium && chown cesium:cesium /var/lib/cesium /etc/cesium
    
    # Install global dependencies
    RUN yarn global add gulp@"$GULP_VERSION" @ionic/cli@"$IONIC_CLI_VERSION"
    
    # copy source tree
    COPY ./ ./
    
    # Install project dependencies
    # Workaround need for node-sass (- )see https://github.com/yarnpkg/yarn/issues/4867)
    RUN yarn install --ignore-engines && \
        yarn remove node-sass && yarn add node-sass
    
    WORKDIR /cesium
    EXPOSE 8100 35729
    CMD ["yarn", "run", "start"]