Skip to content

Commit

Permalink
feat(ci): add docker-ci.yml to .github/workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
spool committed Jun 12, 2023
1 parent f7c5637 commit c20a6c0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

# Enable Buildkit and let compose use it to speed up image building
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1

on:
pull_request:
branches: [ "main", "fix/574-docker-build"]

push:
branches: [ "main", "fix/574-docker-build"]

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

steps:

- name: Checkout Code Repository
uses: actions/checkout@main

- name: Build the Stack
run: docker build -t airsenal .

0 comments on commit c20a6c0

Please sign in to comment.