Skip to content

Commit

Permalink
Create docker-build.yml (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
edumco committed May 23, 2021
1 parent f231488 commit 6a3a2be
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Docker Image CI

on: [push, pull_request]

jobs:

docker-build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag spellcheck:$(date +%s)

0 comments on commit 6a3a2be

Please sign in to comment.