-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(java17): Upgrade java runtime to JRE17 and compilation using JD…
…K17, but target remains Java11 (#2189)
- Loading branch information
Showing
7 changed files
with
18 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM ubuntu:bionic | ||
RUN apt-get update && apt-get install -y \ | ||
openjdk-11-jdk \ | ||
openjdk-17-jdk \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
LABEL maintainer="[email protected]" | ||
ENV GRADLE_USER_HOME /workspace/.gradle | ||
|
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 alpine:3.11 | ||
FROM python:3.7-alpine3.16 | ||
LABEL maintainer="[email protected]" | ||
ARG TARGETARCH | ||
|
||
|
@@ -9,13 +9,10 @@ ENV AWS_CLI_VERSION=1.18.18 | |
RUN apk --no-cache add --update \ | ||
bash \ | ||
curl \ | ||
openjdk11-jre \ | ||
openjdk17-jre \ | ||
openssl \ | ||
py-pip \ | ||
python \ | ||
&& pip install --upgrade awscli==${AWS_CLI_VERSION} \ | ||
&& apk --purge del \ | ||
py-pip \ | ||
&& rm -rf /var/cache/apk | ||
|
||
RUN echo '#!/usr/bin/env bash' > /usr/local/bin/hal && \ | ||
|
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