Skip to content

Commit

Permalink
Add workflow to build docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 committed Dec 31, 2024
1 parent 9c292da commit 23bfdc5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build Docker image

on:
pull_request:

jobs:
build_docker_image:
name: "Build Docker Images 🛠"
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository 🛎"
uses: actions/checkout@v4

- name: "Set up Docker Buildx 🏗"
uses: docker/setup-buildx-action@v3

- name: "Build Docker image 🚀"
uses: docker/build-push-action@v5
with:
context: .
target: "prod"
push: false

0 comments on commit 23bfdc5

Please sign in to comment.