Skip to content

Commit 728cc02

Browse files
author
James Lee
committed
upgrade to CI 2
1 parent 1d4ae44 commit 728cc02

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

.circleci/config.yml

+22
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
19+
name: Run tests
20+
command: |
21+
docker-compose up -d
22+
docker-compose run dockerapp python test.py

circle.yml

-14
This file was deleted.

0 commit comments

Comments
 (0)