diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..bc97a1d8 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2 +jobs: + build: + working_directory: /dockerapp + docker: + - image: docker:17.05.0-ce-git + steps: + - checkout + - setup_remote_docker + - run: + name: Install dependencies + command: | + apk add --no-cache py-pip=9.0.0-r1 + pip install docker-compose==1.15.0 + - run: + name: Run tests + command: | + docker-compose up -d + docker-compose run dockerapp python test.py + \ No newline at end of file diff --git a/dummy.txt b/dummy.txt new file mode 100644 index 00000000..e69de29b