add ci file

merge-requests/1/head
Matthew 2020-12-23 13:57:12 -05:00
parent fc10891459
commit 3313976247
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 21 additions and 0 deletions

21
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,21 @@
default:
image: docker
before_script:
- docker info
stages:
- build
- test
build:
stage: build
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE/$CI_COMMIT_REF_SLUG:$CI_COMMIT_SHA
script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" docker.libraryofcode.org
- docker build -t $IMAGE .
- docker push $IMAGE
include:
- template: Dependency-Scanning.gitlab-ci.yml
- template: Container-Scanning.gitlab-ci.yml