Skip to content

Commit

Permalink
Create docker-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth authored Sep 26, 2020
1 parent 8a7db38 commit 086e4ab
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docker build

on:
push:
branches:
- main

# Build for any PRs.
pull_request:

env:
IMAGE_NAME: helloworld

jobs:
# Build the container
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build image
run: docker build . --file Dockerfile

0 comments on commit 086e4ab

Please sign in to comment.