Skip to content

fix dockerfile

fix dockerfile #158

Workflow file for this run

name: Build Images
on:
workflow_dispatch:
push:
branches:
- master
tags:
- 'v*.*.*'
jobs:
BuildBase:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build base agent
uses: ./.github/actions/build
with:
context: base
dockerfile: base/Dockerfile
image-name: builder-base
platforms: linux/amd64,linux/arm64
docker-namespace: ${{ secrets.DOCKER_HUB_USER }}
docker-password: ${{ secrets.DOCKER_HUB_SECRETS }}