Compare commits

...

24 Commits

Author SHA1 Message Date
8e3c2a9ebf
Update registry.odit.services/hub/library/alpine Docker tag to v3.17 2023-07-15 10:42:00 +00:00
a3e62c5d09 🚀RELEASE 3.15.416 [CI SKIP] 2023-07-13 06:56:03 +00:00
cd2cff9bf2
Merge pull request 'Update registry.odit.services/hub/library/node Docker tag to v19' (#127) from renovate/registry.odit.services-hub-library-node-19.x into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #127
2023-07-13 06:55:23 +00:00
88236c15e1
Update registry.odit.services/hub/library/node Docker tag to v19 2023-07-13 06:53:06 +00:00
3c36f99e12 🚀RELEASE 3.15.415 [CI SKIP] 2023-07-13 06:50:29 +00:00
74ebdf4640
Disable Signing
All checks were successful
continuous-integration/drone/push Build is passing
2023-07-13 06:50:05 +00:00
f671ed4fc8 🚀RELEASE 3.15.414 [CI SKIP] 2023-07-13 06:48:49 +00:00
87418b26e3
Added missing registry
All checks were successful
continuous-integration/drone/push Build is passing
2023-07-13 06:48:23 +00:00
2ea0f87916 🚀RELEASE 3.15.413 [CI SKIP] 2023-07-13 06:46:24 +00:00
9722510ef6
Swiched git plugin to registry cache
Some checks failed
continuous-integration/drone/push Build is failing
2023-07-13 06:46:05 +00:00
9b519984f4 🚀RELEASE 3.15.412 [CI SKIP] 2023-07-07 00:05:48 +00:00
82f195382f 🚀RELEASE 3.15.411 [CI SKIP] 2023-07-06 00:21:29 +00:00
acb6cccdf7 🚀RELEASE 3.15.410 [CI SKIP] 2023-07-05 00:21:24 +00:00
f87ff35e2c 🚀RELEASE 3.15.409 [CI SKIP] 2023-07-04 00:21:26 +00:00
c85ed65d33 🚀RELEASE 3.15.408 [CI SKIP] 2023-07-03 00:21:35 +00:00
cdddc4d929 🚀RELEASE 3.15.407 [CI SKIP] 2023-07-02 00:21:38 +00:00
d153951ed2 🚀RELEASE 3.15.406 [CI SKIP] 2023-07-01 00:21:24 +00:00
de56c9c18c 🚀RELEASE 3.15.405 [CI SKIP] 2023-06-30 00:21:27 +00:00
198e15a330 🚀RELEASE 3.15.404 [CI SKIP] 2023-06-29 00:21:31 +00:00
e35bdf3b24 🚀RELEASE 3.15.403 [CI SKIP] 2023-06-28 00:21:28 +00:00
dadd36e93a 🚀RELEASE 3.15.402 [CI SKIP] 2023-06-27 00:21:26 +00:00
39380227ab 🚀RELEASE 3.15.401 [CI SKIP] 2023-06-26 00:21:27 +00:00
c76c376256 🚀RELEASE 3.15.400 [CI SKIP] 2023-06-25 00:21:30 +00:00
a8751e02f4 🚀RELEASE 3.15.399 [CI SKIP] 2023-06-24 00:21:30 +00:00
3 changed files with 17 additions and 33 deletions

View File

@ -47,7 +47,7 @@ name: build:latest
steps: steps:
- name: bump_patch - name: bump_patch
depends_on: [clone] depends_on: [clone]
image: registry.odit.services/hub/library/node:18.6.0-alpine3.15 image: registry.odit.services/hub/library/node:19.2.0-alpine3.15
commands: commands:
- apk add git - apk add git
- git config --global push.default current - git config --global push.default current
@ -56,7 +56,7 @@ steps:
- yarn release:patch - yarn release:patch
- git pull - git pull
- name: push to repo - name: push to repo
image: appleboy/drone-git-push image: registry.odit.services/hub/appleboy/drone-git-push
depends_on: [bump_patch] depends_on: [bump_patch]
settings: settings:
commit: false commit: false
@ -76,6 +76,7 @@ steps:
password: password:
from_secret: docker_password from_secret: docker_password
repo: library/nginx-brotli repo: library/nginx-brotli
registry: registry.odit.services
tags: tags:
- latest - latest
cache: true cache: true
@ -100,14 +101,14 @@ steps:
- "${DRONE_TAG}" - "${DRONE_TAG}"
cache: true cache: true
registry: registry.odit.services registry: registry.odit.services
- name: sign_image # - name: sign_image
image: registry.odit.services/hub/library/alpine:edge # image: registry.odit.services/hub/library/alpine:edge
depends_on: [build_tag] # depends_on: [build_tag]
commands: # commands:
- apk add cosign docker # - apk add cosign docker
- echo $COSIGN_KEY | sed 's/<br>/\n/g' > cosign.key # - echo $COSIGN_KEY | sed 's/<br>/\n/g' > cosign.key
- echo $DOCKER_PASSWORD | docker login registry.odit.services -u $DOCKER_USERNAME --password-stdin # - echo $DOCKER_PASSWORD | docker login registry.odit.services -u $DOCKER_USERNAME --password-stdin
- "cosign sign --key cosign.key registry.odit.services/library/nginx-brotli:${DRONE_TAG}" # - "cosign sign --key cosign.key registry.odit.services/library/nginx-brotli:${DRONE_TAG}"
environment: environment:
COSIGN_KEY: COSIGN_KEY:
from_secret: cosign_key from_secret: cosign_key
@ -153,7 +154,7 @@ name: build:weekly
steps: steps:
- name: bump_prepatch - name: bump_prepatch
depends_on: [clone] depends_on: [clone]
image: registry.odit.services/hub/library/node:18.6.0-alpine3.15 image: registry.odit.services/hub/library/node:19.2.0-alpine3.15
commands: commands:
- apk add git - apk add git
- git config --global push.default current - git config --global push.default current
@ -162,7 +163,7 @@ steps:
- "yarn release:prepatch" - "yarn release:prepatch"
- git pull - git pull
- name: push to repo - name: push to repo
image: appleboy/drone-git-push image: registry.odit.services/hub/appleboy/drone-git-push
depends_on: [bump_prepatch] depends_on: [bump_prepatch]
settings: settings:
commit: false commit: false
@ -194,21 +195,4 @@ trigger:
- cron - cron
cron: cron:
include: include:
- weekly - weekly
# ---
# kind: pipeline
# type: kubernetes
# name: build:pr
# steps:
# - name: docker release
# image: plugins/docker
# user: 0
# depends_on: [clone]
# settings:
# dry_run: true
# tags:
# - "PR-${DRONE_STAGE_STARTED}"
# mtu: 1000
# trigger:
# event:
# - pull_request

View File

@ -48,7 +48,7 @@ ARG CONFIG="\
--add-module=/usr/src/ngx_brotli \ --add-module=/usr/src/ngx_brotli \
" "
FROM registry.odit.services/hub/library/alpine:3.15 FROM registry.odit.services/hub/library/alpine:3.17
LABEL maintainer="NGINX Docker Maintainers <docker-maint@nginx.com>" LABEL maintainer="NGINX Docker Maintainers <docker-maint@nginx.com>"
ARG NGINX_VERSION ARG NGINX_VERSION
@ -133,7 +133,7 @@ RUN \
| xargs -r apk info --installed \ | xargs -r apk info --installed \
| sort -u > /tmp/runDeps.txt | sort -u > /tmp/runDeps.txt
FROM registry.odit.services/hub/library/alpine:3.15 FROM registry.odit.services/hub/library/alpine:3.17
ARG NGINX_VERSION ARG NGINX_VERSION
COPY --from=0 /tmp/runDeps.txt /tmp/runDeps.txt COPY --from=0 /tmp/runDeps.txt /tmp/runDeps.txt

View File

@ -1,6 +1,6 @@
{ {
"name": "nginx-brotli", "name": "nginx-brotli",
"version": "3.15.398", "version": "3.15.416",
"description": "NGINX Base Image feat. brotli", "description": "NGINX Base Image feat. brotli",
"repository": { "repository": {
"type": "git", "type": "git",