build and push

This commit is contained in:
maximo tejeda 2024-02-08 15:26:42 -04:00
parent 354d112004
commit d249c056ba

View File

@ -0,0 +1,33 @@
name: build-and-push
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
services:
registry:
image: registry:2
ports:
- 32000:32000
steps:
- name: Checkout
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
with:
driver-opts: network=host
- name: Build and push to local registry
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: localhost:32000/scrapper:latest
- name: Inspect
run: |
docker buildx imagetools inspect localhost:32000/scrapper:latest