Skip to content

praksharma is building the docker image πŸš€ #8

praksharma is building the docker image πŸš€

praksharma is building the docker image πŸš€ #8

Workflow file for this run

name: Docker Container
run-name: ${{ github.actor }} is building the docker image πŸš€
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout the repository
uses: actions/checkout@v3
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./docker/Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/deepinn:pre-release