Skip to content

Commit

Permalink
building workflow for pushing image to dockerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
Delyc committed Aug 16, 2024
1 parent 9c3c200 commit 3423a75
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/mpm-fe-dockerfile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Push MPM Frontend Image

on:
push:
branches:
- ft/deployment

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

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

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./Website/ui/Dockerfile
platforms: linux/amd64
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/mpm-frontend:latest

0 comments on commit 3423a75

Please sign in to comment.