В CI добавлена сборка всез образов

This commit is contained in:
Никита Сычев 2026-03-23 22:59:38 +03:00
parent ffa6892c79
commit 3f2765e1cf

View File

@ -1,7 +1,7 @@
stages: stages:
- build - build
build-image: build-images:
stage: build stage: build
image: repo.nstart.local/nstart/docker-cli-buildx:1.0.0 image: repo.nstart.local/nstart/docker-cli-buildx:1.0.0
services: services:
@ -11,8 +11,14 @@ build-image:
variables: variables:
DOCKER_HOST: tcp://docker:2375 DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: "" DOCKER_TLS_CERTDIR: ""
parallel:
matrix:
- BAKE_TARGET:
- jdk17-noble
- 3-14-slim-trixie
script: script:
- echo $REGISTRY_PASSWORD | docker login -u $REGISTRY_USER --password-stdin $REGISTRY - echo $REGISTRY_PASSWORD | docker login -u $REGISTRY_USER --password-stdin $REGISTRY
- docker bake all --no-cache --push - docker bake "$BAKE_TARGET" --no-cache --push
only: only:
- master - master