We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad7bcd commit bdc6c11Copy full SHA for bdc6c11
Makefile
@@ -27,7 +27,7 @@ container-dockerfile-dev:
27
builder:
28
ifneq ($(BUILD_BUILDER_IMAGE), false)
29
docker buildx build --load --platform ${PLATFORM} \
30
- --build-arg USE_CCACHE="${USE_CCACHE}" \
+ --build-arg USE_CCACHE="$(USE_CCACHE)" \
31
-t quay.io/stackrox-io/collector-builder:$(COLLECTOR_BUILDER_TAG) \
32
-f "$(CURDIR)/builder/Dockerfile" \
33
"$(CURDIR)/builder"
builder/Dockerfile
@@ -2,6 +2,7 @@ FROM quay.io/centos/centos:stream9
2
3
ARG BUILD_DIR=/install-tmp
4
ARG USE_CCACHE=false
5
+
6
ENV USE_CCACHE=${USE_CCACHE}
7
8
USER root
0 commit comments