Files
Portfolio/.gitlab-ci.yml
2023-08-05 11:25:11 +00:00

9 lines
286 B
YAML

build:
image: docker:latest
services:
- name: docker:latest
stage: build
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $CI_REGISTRY/whidix/portfolio:latest .
- docker push $CI_REGISTRY/whidix/portfolio:latest