Skip to content
Snippets Groups Projects
Select Git revision
  • 6a7dc8edfa7d385e2b3f4b91c2a899d24e9bf474
  • master default protected
  • feat-create_little_container_for_developer
  • feat/pipeline_publish_extension
  • feat-publish_extension_on_marketplace_with_ci
  • feat-log-in
  • feat-connect_uri_handler_with_chosse_workdir_and_connection
  • feat-choose-mission-workdir
  • 10-en-tant-qu-etudiant-je-souhaite-pouvoir-lancer-une-mission-de-type-vscode-desktop-sur-mon-ide
  • new-building-way-recorder
  • fix-commit-any-challenge-type
  • recorder-push-code
  • theia-extension
  • 0.1.2
  • 0.1.1
  • 0.0.6
  • 1.4
  • 1.3
  • 1.2
  • 1.1
20 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more
    .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