feat: add .circleci

This commit is contained in:
Dawid Wysokiński 2021-02-04 20:09:03 +01:00
parent dd1026522a
commit 362d78febf

29
.circleci/config.yml Normal file
View File

@ -0,0 +1,29 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:12.9.1-browsers
working_directory: ~/twhelp
steps:
- checkout
- setup_remote_docker
# start proprietary DB using private Docker image
# with credentials stored in the UI
- run: |
docker login -u $DOCKER_LOGIN -p $DOCKER_PASS
# build the application image
- run: docker build -t $DOCKER_LOGIN/twhelp-version-website:latest .
# deploy the image
- run: docker push $DOCKER_LOGIN/twhelp-version-website:latest
workflows:
version: 2
deploy_prod:
jobs:
- build:
context: TWHelp
filters:
branches:
only:
- master