generated from adempiere/adempiere-grpc-template-service
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from EdwinBetanc0urt/feature/update-gh-actions
feat: Update GitHub actions.
- Loading branch information
Showing
7 changed files
with
47 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM eclipse-temurin:11.0.22_7-jdk-alpine | ||
FROM eclipse-temurin:11.0.24_8-jdk-alpine | ||
|
||
LABEL maintainer="[email protected]; [email protected];" \ | ||
description="Backend gRPC" | ||
|
@@ -20,7 +20,7 @@ ENV \ | |
MAXIMUM_LIFETIME="6000" \ | ||
KEEPALIVE_TIME="360000" \ | ||
CONNECTION_TEST_QUERY="\"SELECT 1\"" \ | ||
SYSTEM_LOGO_URL="" \ | ||
JAVA_OPTIONS="\"-Xms64M\" \"-Xmx1512M\"" \ | ||
TZ="America/Caracas" | ||
|
||
EXPOSE ${SERVER_PORT} | ||
|
@@ -31,7 +31,7 @@ RUN apk update && \ | |
apk add --no-cache \ | ||
tzdata \ | ||
bash \ | ||
fontconfig \ | ||
fontconfig \ | ||
ttf-dejavu && \ | ||
rm -rf /var/cache/apk/* && \ | ||
rm -rf /tmp/* && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM eclipse-temurin:11.0.22_7-jdk-focal | ||
FROM eclipse-temurin:11.0.24_8-jdk-focal | ||
|
||
LABEL maintainer="[email protected]; [email protected];" \ | ||
description="Backend gRPC" | ||
|
@@ -20,7 +20,7 @@ ENV \ | |
MAXIMUM_LIFETIME="6000" \ | ||
KEEPALIVE_TIME="360000" \ | ||
CONNECTION_TEST_QUERY="\"SELECT 1\"" \ | ||
SYSTEM_LOGO_URL="" \ | ||
JAVA_OPTIONS="\"-Xms64M\" \"-Xmx1512M\"" \ | ||
TZ="America/Caracas" | ||
|
||
EXPOSE ${SERVER_PORT} | ||
|
@@ -31,7 +31,7 @@ RUN apt-get update && \ | |
apt-get install -y \ | ||
tzdata \ | ||
bash \ | ||
fontconfig \ | ||
fontconfig \ | ||
ttf-dejavu && \ | ||
rm -rf /var/lib/apt/lists/* \ | ||
rm -rf /tmp/* && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM envoyproxy/envoy:v1.29.2 | ||
FROM envoyproxy/envoy:v1.32.0 | ||
|
||
LABEL maintainer="[email protected]; [email protected];" \ | ||
description="Proxy Transcoding gRPC to JSON via http" | ||
|