Skip to content

Commit

Permalink
:dependabot: Bump gradle from 8.7.0-jdk21 to 8.8.0-jdk21
Browse files Browse the repository at this point in the history
* upgrade gradle wrapper to 8.8-rc-1

* upgrade gradle wrapper to 8.8-rc-2

* pin version of fontconfig package installed to app container

* upgrade gradle wrapper to version 8.8

* :dependabot: Bump gradle from 8.7.0-jdk21 to 8.8.0-jdk21

Bumps gradle from 8.7.0-jdk21 to 8.8.0-jdk21.

---
updated-dependencies:
- dependency-name: gradle
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* recursively rm /var/lib/apt/lists/ in app image

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: JKatzwinkel <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and JKatzwinkel authored Jun 4, 2024
1 parent 3d2cba8 commit 602bf6d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:8.7.0-jdk21 AS build
FROM gradle:8.8.0-jdk21 AS build

COPY --chown=gradle:gradle . /home/gradle/tla-frontend
WORKDIR /home/gradle/tla-frontend
Expand All @@ -7,8 +7,10 @@ RUN gradle installAssets bootJar --no-daemon

FROM openjdk:23-jdk-slim-bookworm

RUN mkdir /app; apt-get update && apt-get install -y fontconfig \
&& apt-get clean
RUN mkdir /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends fontconfig=2.14.1-4 \
&& apt-get clean && rm -r /var/lib/apt/lists/*
WORKDIR /app

COPY --from=build /home/gradle/tla-frontend/build/libs/*.jar /app/tla-web-frontend.jar
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![build](https://github.com/JKatzwinkel/tla-web/workflows/build/badge.svg)
![deploy](https://github.com/JKatzwinkel/tla-web/workflows/deploy/badge.svg)
![LINE](https://img.shields.io/badge/line--coverage-91.20%25-brightgreen.svg)
![METHOD](https://img.shields.io/badge/method--coverage-92.61%25-brightgreen.svg)
![LINE](https://img.shields.io/badge/line--coverage-91.16%25-brightgreen.svg)
![METHOD](https://img.shields.io/badge/method--coverage-92.40%25-brightgreen.svg)

TLA web frontend.

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down

0 comments on commit 602bf6d

Please sign in to comment.