Merge pull request #28 from OthyTenk/fix/updates_docker_prod3 #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Pipeline | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login Dockerhub | |
env: | |
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | |
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}} | |
run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | |
- name: Build the Docker image | |
run: docker build -f Dockerfile.production -t nextjs-socket-io-demo . | |
- name: Add the tag for the Docker image | |
run: docker tag nextjs-socket-io-demo othytenk/nextjs-socket-io-demo:latest | |
- name: Push to Dockerhub | |
run: docker push othytenk/nextjs-socket-io-demo:latest |