Skip to content

Commit

Permalink
Add docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PargeLenis committed Dec 10, 2024
1 parent 201d167 commit a0d17c4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Docker Build
on:
push:
branches: [ docker ]
pull_request:
branches: [ docker ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build Mangosd Docker image
run: |
docker build -t mangosd:latest -f dockercontainer/DockerFile-mangosd .
- name: Build Realmd Docker image
run: |
docker build -t realmd:latest -f dockercontainer/DockerFile-realmd .

0 comments on commit a0d17c4

Please sign in to comment.