From a81e0cd50933bac25eed13c4abea8af318134b2a Mon Sep 17 00:00:00 2001 From: Struchkov Mark Date: Tue, 9 Jan 2024 17:43:19 +0300 Subject: [PATCH] update base dockerimage cicd [skip ci] --- .drone.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index d810b96..174346c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -45,7 +45,7 @@ volumes: steps: - name: publish maven central - image: hub.docker.struchkov.dev/maven:3.9.6-eclipse-temurin-17 + image: hub.docker.struchkov.dev/maven:3.9.6-eclipse-temurin-17-alpine privileged: true volumes: - name: m2 @@ -58,6 +58,7 @@ steps: GPG_PASSPHRASE: from_secret: GPG_PASSPHRASE commands: + - apk add --no-cache gnupg - echo "$GPG_PRIVATE_KEY" >> gpg.key - echo "$MAVEN_SETTINGS" >> maven-settings.xml - gpg --pinentry-mode loopback --passphrase $GPG_PASSPHRASE --import gpg.key @@ -82,7 +83,7 @@ volumes: steps: - name: publish struchkov nexus - image: hub.docker.struchkov.dev/maven:3.9.5-eclipse-temurin-17 + image: hub.docker.struchkov.dev/maven:3.9.5-eclipse-temurin-17-alpine privileged: true volumes: - name: m2 @@ -95,6 +96,7 @@ steps: GPG_PASSPHRASE: from_secret: GPG_PASSPHRASE commands: + - apk add --no-cache gnupg - echo "$GPG_PRIVATE_KEY" >> gpg.key - echo "$MAVEN_SETTINGS" >> maven-settings.xml - gpg --pinentry-mode loopback --passphrase $GPG_PASSPHRASE --import gpg.key @@ -104,6 +106,6 @@ image_pull_secrets: - DOCKER_AUTH --- kind: signature -hmac: 5ce3e381ed9fa12673ccb654e1c108f8c73d0ffeda0d133807fe36c0449ab770 +hmac: 5a61d8c658a4be1aa3afed536582b5905bb044ad1269bc8734e7f63b31572f1f ...