Skip to content

Update Dockerfile

Update Dockerfile #12

Workflow file for this run

name: Docker Image CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: |
docker build . -t ghcr.io/infr-ai/core-runtime:latest
docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
docker push ghcr.io/infr-ai/core-runtime:latest