Skip to content
Snippets Groups Projects
Commit a11fab4f authored by Dmitry Rodionov's avatar Dmitry Rodionov
Browse files

ci: fix stress image build

parent 6577291b
No related branches found
No related tags found
1 merge request!1522ci: fix stress image build
Pipeline #58492 failed
......@@ -129,7 +129,11 @@ variables:
script:
- >
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile ${DOCKERFILE}
--build-arg TARANTOOL_VERSION=${TARANTOOL_VERSION} --build-arg RUST_VERSION=${RUST_VERSION} --build-arg BASE_IMAGE_TAG=${BASE_IMAGE_TAG} ${PUSH_DOCKER}
--build-arg TARANTOOL_VERSION=${TARANTOOL_VERSION}
--build-arg RUST_VERSION=${RUST_VERSION}
--build-arg BASE_IMAGE=${BASE_IMAGE}
--build-arg BASE_IMAGE_TAG=${BASE_IMAGE_TAG}
${PUSH_DOCKER}
--cache=false --cache-run-layers=true --single-snapshot --compressed-caching=false --use-new-run --snapshot-mode=redo --cleanup
--destination ${DESTINATION}
......
ARG BASE_IMAGE_TAG
FROM docker-public.binary.picodata.io/sbroad-builder:${BASE_IMAGE_TAG}
FROM ${BASE_IMAGE}:${BASE_IMAGE_TAG}
ENV STRESS_TEST=""
COPY docker-build-base/entrypoint-stress.sh sbroad/Makefile /sbroad/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment