Skip to content

Added GitHub Action workflow to automate Docker #1

Added GitHub Action workflow to automate Docker

Added GitHub Action workflow to automate Docker #1

name: Container - Build & Push
on:
workflow_dispatch:
push:
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push web
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: |
codingforentrepreneurs/micro-ecommerce:latest
codingforentrepreneurs/micro-ecommerce:${{ github.sha }}-${{ github.run_id }}