We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d4ae44 commit 728cc02Copy full SHA for 728cc02
.circleci/config.yml
@@ -0,0 +1,22 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: /dockerapp
5
+ docker:
6
+ - image: docker:17.05.0-ce-git
7
+ steps:
8
+ - checkout
9
+ - setup_remote_docker
10
+ - run:
11
+ name: Install dependencies
12
+ command: |
13
+ apk add --no-cache \
14
+ py-pip=9.0.0-r1
15
+ pip install \
16
+ docker-compose==1.12.0 \
17
+ awscli==1.11.76
18
19
+ name: Run tests
20
21
+ docker-compose up -d
22
+ docker-compose run dockerapp python test.py
circle.yml
0 commit comments