Skip to content

updated workflow file for docker image #11

updated workflow file for docker image

updated workflow file for docker image #11

Workflow file for this run

name: Docker Image CI/CD
on:
push:
branches:
- karan
jobs:
push_to_registry:
name: Push Docker Image to Docker Hub
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_EMAIL }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker Dependencies
uses: actions/cache@v4
with:
path: sbt-build-cache
key: ${{ runner.os }}-sbt-${{ hashFiles('**/Build.sbt') }}
restore-keys: |
${{ runner.os }}-sbt-
- name: Inject sbt-build-cache
uses: reproducible-containers/buildkit-cache-dance@4b2444fec0c0fb9dbf175a96c094720a692ef810 # v2.1.4
with:
cache-source: sbt-build-cache
- name: Build and Push Docker Image to Registry
uses: docker/build-push-action@v6
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
push: true
tags: teamfemrdev/teamfemr:latest