1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-16 15:17:28 +00:00

testing to see if ci/cd will just work with k8s runner

This commit is contained in:
Anson Biggs 2021-03-18 00:44:59 +00:00
parent 089e3344d4
commit ee406fcf88

9
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,9 @@
build:
image: docker:19.03.12
stage: build
services:
- docker:19.03.12-dind
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $CI_REGISTRY/group/project/image:test .
- docker push $CI_REGISTRY/group/project/image:test