Skip to content

Commit

Permalink
adding workflow to check docker building
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-c4t committed Oct 14, 2024
1 parent faa00c8 commit 77bd5f5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build-docker-image

on:
workflow_dispatch:
pull_request:
branches:
- c4t
- dev
env:
docker_image: "c4tplatform/camino-conduit"

jobs:
build_docker:
name: Build Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: build docker image
run: |
docker build . -t ${{ env.docker_image }}:temp

0 comments on commit 77bd5f5

Please sign in to comment.