Skip to content

Commit

Permalink
fix: use user-defined java version instead of the default version (#32)
Browse files Browse the repository at this point in the history
* fix: use user-defined java version instead of the default version

* add James as CODEOWNER
  • Loading branch information
cbrgm authored Oct 17, 2023
1 parent df0b922 commit bba201c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# the repo. Unless a later match takes precedence,
# mentioned account names will be requested for
# review when someone opens a pull request.
* @oppermax @msiuts @djablonski-moia @snowiow @guusvw @cbrgm
* @oppermax @msiuts @djablonski-moia @snowiow @guusvw @cbrgm @jvm986
2 changes: 1 addition & 1 deletion Dockerfiles/ubuntu/22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN curl --silent --output /tmp/corretto.key https://apt.corretto.aws/corretto.
&& apt-key add /tmp/corretto.key \
&& echo "deb https://apt.corretto.aws stable main" > /etc/apt/sources.list.d/java.list \
&& apt-get update \
&& apt-get install -y java-${DEFAULT_JAVA_VERSION}-amazon-corretto-jdk
&& apt-get install -y java-${JAVA_VERSION}-amazon-corretto-jdk

# -----------------------Begin: moia codebuild image -----------------------
FROM runtimes AS moia_codebuild
Expand Down

0 comments on commit bba201c

Please sign in to comment.