Skip to content

Commit

Permalink
fix(build): docker action
Browse files Browse the repository at this point in the history
  • Loading branch information
arminveres committed Nov 29, 2023
1 parent e59475d commit e6a3eb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build the Agent Docker image
run: docker build impl --file impl/docker/agent.dockerfile --tag ba-agent:$(date +%s)
run: docker build impl --file docker/agent.dockerfile --tag ba-agent:$(date +%s)
- name: Build the Auditor Docker image
run: docker build impl --file impl/docker/auditor.dockerfile --tag ba-auditor:$(date +%s)
run: docker build impl --file docker/auditor.dockerfile --tag ba-auditor:$(date +%s)
- name: Build the Updater Docker image
run: docker build impl --file impl/docker/updater.dockerfile --tag ba-updater:$(date +%s)
run: docker build impl --file docker/updater.dockerfile --tag ba-updater:$(date +%s)

0 comments on commit e6a3eb6

Please sign in to comment.