-
Notifications
You must be signed in to change notification settings - Fork 8
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 #65 from at88mph/SP-3544
Sp 3544
- Loading branch information
Showing
4 changed files
with
32 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ARG JAVA_VERSION=11 | ||
|
||
FROM gradle:7-jdk${JAVA_VERSION} as builder | ||
|
||
RUN apt update \ | ||
&& apt install -y rsync xz-utils | ||
|
||
ADD https://nodejs.org/dist/v18.18.0/node-v18.18.0-linux-x64.tar.xz /tmp/ | ||
|
||
RUN cd /tmp/ \ | ||
&& tar xvf node-v18.18.0-linux-x64.tar.xz \ | ||
&& rsync -arvc node-v18.18.0-linux-x64/* /usr/local/ | ||
|
||
FROM gradle:7-jdk${JAVA_VERSION} | ||
|
||
COPY --from=builder /usr/local/ /usr/local/ |
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