Brings back circleci from the previous honestica/gotty

This commit is contained in:
Benoit Tigeot 2022-06-15 15:27:45 +02:00
parent bfed9b4320
commit 33e6ba5c86
No known key found for this signature in database
GPG Key ID: 8E6D4FC8AEBDA62C

22
.circleci/config.yml Normal file
View File

@ -0,0 +1,22 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3
steps:
- checkout
- setup_remote_docker:
docker_layer_caching: true
- run:
name: Build Gotty Image
command: |
DOCKER_TAG=$CIRCLE_BRANCH-$CIRCLE_BUILD_NUM
docker login -u $DOCKERHUB_USERNAME -p $DOCKERHUB_PASSWORD
docker build -t honestica/gotty:$DOCKER_TAG .
docker push honestica/gotty:$DOCKER_TAG
workflows:
version: 2
build:
jobs:
- build:
context: org-global