Skip to content

fix(build): docker action #67

fix(build): docker action

fix(build): docker action #67

Workflow file for this run

name: Docker Image CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
# TODO: (aver) add private image push!
steps:
- uses: actions/checkout@v3
- name: Build the Agent Docker image
run: docker build impl --file docker/agent.dockerfile --tag ba-agent:$(date +%s)
- name: Build the Auditor Docker image
run: docker build impl --file docker/auditor.dockerfile --tag ba-auditor:$(date +%s)
- name: Build the Updater Docker image
run: docker build impl --file docker/updater.dockerfile --tag ba-updater:$(date +%s)