Skip to content

Commit

Permalink
fix: container naming scheme
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Buchleitner <[email protected]>
  • Loading branch information
mabunixda committed Dec 6, 2024
1 parent aaf7ce7 commit 3b9e721
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# MONDOO_SERVICE_ACCOUNT: "${{ fromJson(secrets.VAULT_KV_1D187965_OP_MONDOO_PACKER_AGENT).password }}"
with:
dockerfile: "${{ matrix.container }}/Dockerfile"
image_name: "${{ github.repository }}-${{matrix.container}}"
image_name: "${{ github.repository }}/${{matrix.container}}"
score: 50
platforms: "linux/amd64, linux/arm64"
release: false
3 changes: 3 additions & 0 deletions go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ RUN CGO_ENABLED=0 go build -o app .

# output container ...
FROM debian:buster-slim

COPY --from=builder /src/app /bin/app

EXPOSE 6000

CMD ["/bin/app"]

0 comments on commit 3b9e721

Please sign in to comment.