Skip to content

Commit

Permalink
Add new development image (#600)
Browse files Browse the repository at this point in the history
* Rename Dockerfile to DockerFile

* dev docker image
  • Loading branch information
Teingi authored Dec 5, 2024
1 parent 2b036d7 commit 8a8902c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/build_dev_docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: build dev docker

on:
pull_request:
branches:
- dev
push:
branches:
- dev

jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

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

- name: Log in to Quay io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_IO_USERNAME }}
password: ${{ secrets.QUAY_IO_PASSWORD }}

- name: Create and push manifests w/o cache
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
file: ../DockerFile
push: true
tags: |
quay.io/${{ vars.QUAY_IO_PUSH_BASE }}/obdiag-dev:latest

0 comments on commit 8a8902c

Please sign in to comment.