Skip to content

removing unused scripts, adding Dockerfile and github actions for ima… #1

removing unused scripts, adding Dockerfile and github actions for ima…

removing unused scripts, adding Dockerfile and github actions for ima… #1

Workflow file for this run

name: Create Release
on:
push:
branches:
- main
jobs:
create-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Login to Docker registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Run Makefile Rule
run: docker build -t hcadavidescience/mdt_poc_cvdp_model_training .
- name: Push Docker image
run: |
docker push hcadavidescience/mdt_poc_cvdp_model_training