Skip to content

Commit

Permalink
Add GitHub Action to ensure that docker images build as expected. (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
KenFigueiredo authored Aug 31, 2020
1 parent 474e7f5 commit cca657e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Docker CI

on: [push, pull_request]

jobs:
apiary-docker-image:
name: Apiary Docker Image Checks
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Ensure Apiary Docker Image Builds.
uses: docker/[email protected]
with:
dockerfile: "Dockerfile"
always_pull: true
push: false

apiary-init-docker-image:
name: Apiary Init Container Docker Checks
runs-on: ubuntu-18.04
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Ensure Apiary Init Docker Image Builds.
uses: docker/[email protected]
with:
path: "initContainer"
dockerfile: "initContainer/Dockerfile"
always_pull: true
push: false

0 comments on commit cca657e

Please sign in to comment.