Skip to content

Commit ca3a1f4

Browse files
authored
Merge pull request #1 from panubo/upgrade-21-jre-alpine
Upgrade base image to 21-jre-alpine
2 parents 99d344b + 5862d73 commit ca3a1f4

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

.github/workflows/build-push-cmak.yml .github/workflows/build-push.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# This workflow is based on build-push.yml but contains repo specific changes.
2-
3-
# Panubo build and push to Quay.io and ECR Public
1+
# Source: https://github.com/panubo/reference-github-actions/blob/main/docker-images/build-push.yml
2+
#
3+
# Description: Panubo build and push to Quay.io and ECR Public
44
# This GH Action is intended for public docker images that package upstream applications/services (ie not for projects of Panubo's).
55
# For repos that build multiple repos use the multi-build-push.yml workflow.
66
#
@@ -11,6 +11,8 @@
1111
# Automated testing is triggered by `make _ci_test`, if no test is required the Makefile target should just run `true`.
1212
# Before tests are run a Docker build is performed, the resulting image has a tag of "test"
1313
# BATS is installed since it is commonly required by the tests.
14+
#
15+
# LICENSE: MIT License, Copyright (c) 2021-2023 Volt Grid Pty Ltd t/a Panubo
1416

1517
name: build and push on main and tags
1618

@@ -112,6 +114,6 @@ jobs:
112114
push: ${{ github.event_name != 'pull_request' }}
113115
cache-from: type=gha
114116
cache-to: type=gha,mode=max
115-
platforms: linux/amd64 # ,linux/arm64 # ARM unsupported due to https://github.com/adoptium/containers/issues/158
117+
platforms: linux/amd64,linux/arm64
116118
tags: ${{ steps.meta.outputs.tags }}
117119
labels: ${{ steps.meta.outputs.labels }}

Dockerfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/eclipse-temurin:11-jre-alpine
1+
FROM docker.io/eclipse-temurin:21-jre-alpine
22

33
ENV \
44
CMAK_VERSION=3.0.0.6 \
@@ -24,4 +24,7 @@ WORKDIR /cmak
2424
USER cmak
2525

2626
ENTRYPOINT ["tini"]
27-
CMD ["/cmak/bin/cmak", "-Dpidfile.path=/dev/null", "-Dapplication.home=/cmak", ""]
27+
# Arguments `--add-opens` and `--add-exports` added due to new versions of
28+
# Java. See Github issue https://github.com/yahoo/CMAK/issues/844 for more
29+
# details
30+
CMD ["/cmak/bin/cmak", "-Dpidfile.path=/dev/null", "-Dapplication.home=/cmak", "-J--add-opens=java.base/sun.net.www.protocol.file=ALL-UNNAMED", "-J--add-exports=java.base/sun.net.www.protocol.file=ALL-UNNAMED"]

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
# Docker CMAK
22

33
Docker image of [yahoo/CMAK](https://github.com/yahoo/CMAK).
4+
5+
## Testing and Development
6+
7+
Some tests are provided in [tests/](tests/).
8+
9+
A `docker-compose.yaml` is provided with Zookeeper and Kafka. Once running a cluster can be added by setting the "Cluster Zookeeper Hosts" to `zk:2181`.

docker-compose.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: '3.6'
2+
3+
services:
4+
zk:
5+
image: zookeeper:latest
6+
environment:
7+
ZOO_SERVERS: server.1=0.0.0.0:2888:3888;2181
8+
kafka:
9+
image: wurstmeister/kafka:2.12-2.1.1
10+
environment:
11+
KAFKA_ADVERTISED_HOST_NAME: kafka
12+
KAFKA_ZOOKEEPER_CONNECT: "zk:2181"
13+
KAFKA_CREATE_TOPICS: "test:1:1"
14+
ports:
15+
- "9092"
16+
cmak:
17+
build: .
18+
ports:
19+
- "9000"
20+
environment:
21+
ZK_HOSTS: "zk:2181"

0 commit comments

Comments
 (0)