Skip to content

Commit

Permalink
collector!
Browse files Browse the repository at this point in the history
  • Loading branch information
gavin-stackrox committed Jun 12, 2024
1 parent 6277679 commit 689cc2a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ test-cci-export:
collector-image:
$(DOCKER) build \
-t quay.io/$(QUAY_REPO)/apollo-ci:$(shell scripts/get_tag.sh "collector") \
--build-arg STACKROX_CENTOS_TAG=$(STACKROX_CENTOS_TAG) \
-f images/collector.Dockerfile \
images/

Expand Down
3 changes: 2 additions & 1 deletion images/collector.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM quay.io/centos/centos:stream8
ARG STACKROX_CENTOS_TAG
FROM quay.io/centos/centos:${STACKROX_CENTOS_TAG}

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion images/scanner-build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Provides the tooling required to run Scanner dockerized build targets.

ARG STACKROX_CENTOS_TAG
FROM quay.io/centos/centos:${STACKROX_CENTOS_TAG} as base
FROM quay.io/centos/centos:${STACKROX_CENTOS_TAG}

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion images/stackrox-build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Provides the tooling required to run StackRox dockerized build targets.

ARG STACKROX_CENTOS_TAG
FROM quay.io/centos/centos:${STACKROX_CENTOS_TAG} as base
FROM quay.io/centos/centos:${STACKROX_CENTOS_TAG}

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down

0 comments on commit 689cc2a

Please sign in to comment.