Skip to content

Update docker-image.yml #27

Update docker-image.yml

Update docker-image.yml #27

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_matrix:
strategy:
matrix:
os: [windows-latest]
runs-on: ${{matrix.os}}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Task1/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/test_dataset:latest