Skip to content

Commit 6b251ab

Browse files
Updates docker images to latest Java on Alpine 3.23.3 (#131)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
1 parent a71b185 commit 6b251ab

32 files changed

+436
-110
lines changed

.dockerignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,32 @@
99
!build-bin/docker/docker-healthcheck
1010

1111
# Allow on-demand "mvn package".
12+
!armeria/src/main
1213
!armeria/src/main/**
14+
!armeria-kafka/src/main
1315
!armeria-kafka/src/main/**
16+
!jersey2-cassandra3/src/main
1417
!jersey2-cassandra3/src/main/**
18+
!netty4-grpc/src/main
1519
!netty4-grpc/src/main/**
20+
!webflux5-sleuth/src/main
1621
!webflux5-sleuth/src/main/**
22+
!webflux6-micrometer/src/main
1723
!webflux6-micrometer/src/main/**
24+
!webmvc3-jetty/src/main
1825
!webmvc3-jetty/src/main/**
26+
!webmvc4-boot/src/main
1927
!webmvc4-boot/src/main/**
28+
!webmvc4-jetty/src/main
2029
!webmvc4-jetty/src/main/**
30+
!webmvc5-sleuth/src/main
2131
!webmvc5-sleuth/src/main/**
32+
!webmvc25-jetty/src/main
2233
!webmvc25-jetty/src/main/**
2334
!**/pom.xml
2435
!/parent-pom.xml
2536

2637
# We cannot share paths outside the current directory with the Docker context
2738
# (ex via symlinks). So, build-bin/configure_* overrides maven.repo.local
2839
!/m2repository
40+
!/m2repository/**

.github/deploy-template.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-armeria-kafka.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-armeria.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-jersey2-cassandra3.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-netty4-grpc.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-webflux5-sleuth.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-webflux6-micrometer.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-webmvc25-jetty.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

.github/workflows/deploy-webmvc3-jetty.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
# We deploy non-tagged pushes to master relevant for this project. We can't opt out of
77
# documentation-only commits because GH actions does not permit paths and paths-ignore.
88
push:
9-
tags: ''
9+
tags-ignore:
10+
- '*'
1011
branches: master
1112
paths:
1213
- "build-bin/**"

0 commit comments

Comments
 (0)