Skip to content

Commit

Permalink
Merge pull request #391 from Kegbot/mikey/docker-actions
Browse files Browse the repository at this point in the history
Add docker build Github Action
  • Loading branch information
mik3y authored Mar 1, 2020
2 parents 190722b + d29d02c commit 01cbafd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Docker Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag kegbot-server:${GITHUB_SHA::8}

0 comments on commit 01cbafd

Please sign in to comment.