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
H-Shay committed Nov 27, 2023
1 parent 04b4105 commit 953ac35
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build Docker Image

on:
push:

env:
PLATFORMS: linux/amd64

jobs:
docker-latest:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2

- name: Build image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: ${{ env.PLATFORMS }}
push: false
tags: |
matrixdotorg/conf-bot:latest

0 comments on commit 953ac35

Please sign in to comment.