Skip to content
Snippets Groups Projects

Authentication and major rewriting

Merged Brett Choquet requested to merge feature/authentication into develop
Files
2
.gitlab-ci.yml 0 → 100644
+ 15
0
stages:
- build
build:
stage: build
image: docker:latest
services:
- docker:dind
script:
- apk add jq
- version=$(jq -r .version package.json)
- docker build -t registry.forgemia.inra.fr/in-sylva-development/in-sylva.portal:$version .
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker push registry.forgemia.inra.fr/in-sylva-development/in-sylva.portal:$version
when: manual
Loading