Skip to content

Commit 2ddee3f

Browse files
authored
Add PackCLI (#693)
1 parent 13e354f commit 2ddee3f

File tree

6 files changed

+24
-0
lines changed

6 files changed

+24
-0
lines changed

al2/x86_64/standard/4.0/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,12 @@ ENV GOPATH="/go"
130130

131131
FROM tools AS runtimes_1
132132

133+
#**************** Pack CLI *************************************************
134+
RUN (curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.32.1/pack-v0.32.1-linux.tgz" \
135+
| tar -C /usr/local/bin/ --no-same-owner -xzv pack)
136+
137+
#**************** END Pack CLI *********************************************
138+
133139
#**************** JAVA ****************************************************
134140

135141
ENV JAVA_17_HOME="/usr/lib/jvm/java-17-amazon-corretto.x86_64" \

al2/x86_64/standard/4.0/legal/bill_of_material.txt

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ icu : MIT and UCD and Public Domain
4747
----------------
4848
iptables : GPLv2
4949
----------------
50+
pack: https://github.com/buildpacks/pack/blob/main/LICENSE
51+
----------------
5052
java-1.8.0-amazon-corretto-devel : ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib.
5153
----------------
5254
java-1.11.0-amazon-corretto-devel : ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib.

al2/x86_64/standard/5.0/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,12 @@ ENV GOPATH="/go"
130130

131131
FROM tools AS runtimes_1
132132

133+
#**************** Pack CLI *************************************************
134+
RUN (curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.32.1/pack-v0.32.1-linux.tgz" \
135+
| tar -C /usr/local/bin/ --no-same-owner -xzv pack)
136+
137+
#**************** END Pack CLI *********************************************
138+
133139
#**************** JAVA ****************************************************
134140

135141
ENV JAVA_17_HOME="/usr/lib/jvm/java-17-amazon-corretto.x86_64" \

al2/x86_64/standard/5.0/legal/bill_of_material.txt

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ icu : MIT and UCD and Public Domain
4949
----------------
5050
iptables : GPLv2
5151
----------------
52+
pack: https://github.com/buildpacks/pack/blob/main/LICENSE
53+
----------------
5254
java-1.8.0-amazon-corretto-devel : ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib.
5355
----------------
5456
java-1.11.0-amazon-corretto-devel : ASL 1.1 and ASL 2.0 and BSD and BSD with advertising and GPL+ and GPLv2 and GPLv2 with exceptions and IJG and LGPLv2+ and MIT and MPLv2.0 and Public Domain and W3C and zlib.

ubuntu/standard/7.0/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,12 @@ RUN goenv install $GOLANG_20_VERSION && rm -rf /tmp/* && \
282282

283283
FROM runtimes AS runtimes_n_corretto
284284

285+
#**************** Pack CLI *************************************************
286+
RUN (curl -sSL "https://github.com/buildpacks/pack/releases/download/v0.32.1/pack-v0.32.1-linux.tgz" \
287+
| tar -C /usr/local/bin/ --no-same-owner -xzv pack)
288+
289+
#**************** END Pack CLI *********************************************
290+
285291
#**************** JAVA ****************************************************
286292
ENV JAVA_17_HOME="/usr/lib/jvm/java-17-amazon-corretto" \
287293
JDK_17_HOME="/usr/lib/jvm/java-17-amazon-corretto" \

ubuntu/standard/7.0/legal/bill_of_material.txt

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ bzip2 : /usr/share/doc/bzip2/copyright
1717
----------------
1818
bzr : /usr/share/doc/bzr/copyright
1919
----------------
20+
pack: https://github.com/buildpacks/pack/blob/main/LICENSE
21+
----------------
2022
ca-certificates-java : /usr/share/doc/ca-certificates-java/copyright
2123
----------------
2224
curl : /usr/share/doc/curl/copyright

0 commit comments

Comments
 (0)