Skip to content
Snippets Groups Projects
Select Git revision
  • 552d95263960344ebed9d6fe05a87312b69510bc
  • main default protected
  • 1.22.1-java
  • 1.22.1
  • 1.201
  • 1.20
6 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 432 B
    variables:
      DOCKER_HOST: tcp://docker:2375/
      DOCKER_DRIVER: overlay2
    
    stages:
      - build
    
    before_script:
      - apk update
      - apk add nodejs npm
      - apk add yarn
    
    
    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
      only:
        - master