Skip to content

Commit

Permalink
Merge pull request #293 from RADAR-base/release-0.7.5
Browse files Browse the repository at this point in the history
Release 0.7.5
  • Loading branch information
blootsvoets authored Dec 15, 2021
2 parents d538c1f + f2f0b1a commit d770a8d
Show file tree
Hide file tree
Showing 22 changed files with 1,311 additions and 54 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:

- uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17

- name: Cache
uses: actions/cache@v2.0.0
uses: actions/cache@v2
with:
# Cache gradle directories
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17

- name: Gradle cache
uses: actions/cache@v2
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Build docker
uses: docker/build-push-action@v2
with:
# Allow running the image on the architectures supported by openjdk:11-jre-slim
# Allow running the image on X86 and ARM.
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:7.0-jdk11 as builder
FROM gradle:7.3-jdk17 as builder

RUN mkdir -p /code/java-sdk
WORKDIR /code/java-sdk
Expand Down Expand Up @@ -27,7 +27,7 @@ RUN gradle distTar --no-watch-fs -Pprofile=docker \
&& cd ../../../radar-catalog-server/build/distributions \
&& tar xzf radar-catalog-server*.tar.gz

FROM openjdk:11-jre-slim
FROM azul/zulu-openjdk-alpine:17-jre-headless

ENV KAFKA_SCHEMA_REGISTRY=http://schema-registry-1:8081 \
SCHEMA_REGISTRY_API_KEY="" \
Expand All @@ -39,10 +39,10 @@ ENV KAFKA_SCHEMA_REGISTRY=http://schema-registry-1:8081 \
KAFKA_CONFIG_PATH="" \
NO_VALIDATE=""

RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apk add --no-cache \
bash \
curl \
rsync \
&& rm -rf /var/lib/apt/lists/*
rsync

WORKDIR /schema

Expand Down
Loading

0 comments on commit d770a8d

Please sign in to comment.