Skip to content

Commit

Permalink
ci: add skeleton docker image building to ci (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmc committed Sep 29, 2017
1 parent 02401fa commit 9a78603
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Expand Up @@ -47,3 +47,21 @@ jobs:

- store_test_results:
path: /tmp/test-results
image:
docker:
- image: gcr.io/cloud-builders/docker
working_directory: /go/src/github.com/tmc/pqstream
steps:
- checkout
- setup_remote_docker:
resuable: true
- run:
name: Build Image
command: |
docker build .
workflows:
version: 2
ci:
jobs:
- build
- image
3 changes: 3 additions & 0 deletions Dockerfile
@@ -0,0 +1,3 @@
FROM scratch

COPY . /go/src/github.com/tmc/pqstream

0 comments on commit 9a78603

Please sign in to comment.