Skip to content
Snippets Groups Projects
Select Git revision
  • c9cd19b1476c630c6028b62330e0b7594f67ff46
  • main default
2 results

press.sh

Blame
  • .gitlab-ci.yml 394 B
    variables:
      DOCKER_HOST: tcp://docker:2375/
      DOCKER_DRIVER: overlay2
    
    stages:
      - build
    
    before_script:
      - apk update
      - apk add nodejs npm
    
    
    build:
      stage: build
      services:
        - docker:18.09.6-dind
      script:
        - ./build-plugins.sh
        - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.e-biz.fr
        - docker build . -t $CI_REGISTRY_IMAGE
        - docker push $CI_REGISTRY_IMAGE