Skip to content

Fix Dockerfile not using current sources (#60) #3

Fix Dockerfile not using current sources (#60)

Fix Dockerfile not using current sources (#60) #3

Workflow file for this run

name: Build Docker image
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- uses: actions/checkout@v5
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: docker
push: true
tags: ghcr.io/${{github.repository}}:latest