Skip to content

added deploing to docker #1

added deploing to docker

added deploing to docker #1

Workflow file for this run

name: Build and Deploy to Docker Hub
on:
push:
branches:
- master
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and PUSH Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile.user
push: true
tags: prashantflick/user-paytm:latest
# - name: Verify Pushed Image
# run: docker pull prashantflick/user-paytm:latest