Skip to content
This repository has been archived by the owner on Feb 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #196 from aldryn/topic/dockerfile
Browse files Browse the repository at this point in the history
Move dockerfile to .circleci
  • Loading branch information
glasnt committed Apr 12, 2018
2 parents cb89254 + 3518447 commit 9575fb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -56,7 +56,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
- run: docker build --build-arg PYTHON_VERSION=2.7 -t py27 .
- run: docker build -f .circleci/Dockerfile --build-arg PYTHON_VERSION=2.7 -t py27 .
- run: mkdir caches
- run: docker save -o caches/py27.tar py27
- save_cache:
Expand All @@ -70,7 +70,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
- run: docker build --build-arg PYTHON_VERSION=3.4 -t py34 .
- run: docker build -f .circleci/Dockerfile --build-arg PYTHON_VERSION=3.4 -t py34 .
- run: mkdir caches
- run: docker save -o caches/py34.tar py34
- save_cache:
Expand All @@ -85,7 +85,7 @@ jobs:
- checkout
- setup_remote_docker:
docker_layer_caching: true
- run: docker build --build-arg PYTHON_VERSION=3.5 -t py35 .
- run: docker build -f .circleci/Dockerfile --build-arg PYTHON_VERSION=3.5 -t py35 .
- run: mkdir caches
- run: docker save -o caches/py35.tar py35
- save_cache:
Expand Down

0 comments on commit 9575fb8

Please sign in to comment.