Commit 5ef6f171 by Jessica Hawkwell

Adding CI

1 parent 003f5693
Pipeline #180 failed
in 36 seconds
Showing with 14 additions and 0 deletions
# This file is a template, and might need editing before it works on your project.
# Official docker image.
image: docker:latest
services:
- docker:dind
build:
stage: build
script:
- export IMAGE_TAG=$(echo -en $CI_COMMIT_REF_NAME | tr -c '[:alnum:]_.-' '-')
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" $CI_REGISTRY
- docker build --pull -t "$CI_REGISTRY_IMAGE:$IMAGE_TAG" .
- docker push "$CI_REGISTRY_IMAGE:$IMAGE_TAG"
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!