Luk Aron
Luk Aron

Reputation: 1415

Build image and push to docker hub using github-action

Since the FROM syntax in dockerfile doesnt support a github repo link.

There are few Dockerfiles in github repo.

How could I use github action to build them and push to docker-registry once per day?

Upvotes: 0

Views: 1331

Answers (1)

rassakra
rassakra

Reputation: 1121

you can use this example:

name: ci

on:
  push:
    branches:
      - 'master'

jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@v2
      -
        name: Set up QEMU
        uses: docker/setup-qemu-action@v1
      -
        name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v1
      -
        name: Login to DockerHub
        uses: docker/login-action@v1
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      -
        name: Build and push
        uses: docker/build-push-action@v2
        with:
          context: .
          push: true
          tags: user/app:latest

Upvotes: 1

Related Questions