I've created a repo in gitlab for a Dockerfile. In the .gitlab-ci.yml i defined two stages: build and push to the registry.
This is the .gitlab-ci.yml file:
image: docker
stages:
- build
- push
build:
stage: build
script:
- docker build --no-cache -t ${DOCKER_REGISTRY}/debian9-cunit .
push:
stage: push
script:
- docker push ${DOCKER_REGISTRY}/debian9-cunit
When I run the pipeline, the build stage fails saying:
invalid argument "/debian9-cunit" for "-t, --tag" flag: invalid reference format
The same exact code (with only a different name after "/debian9-") works with no problem in another repo of a collegue. What can be the problem?