Skip to content

Commit 6a69f64

Browse files
colyoonamazDylan-AWS
authored andcommitted
Add lambda x86_64/aarch64 single runtime images
1 parent c32d029 commit 6a69f64

File tree

36 files changed

+4976
-0
lines changed

36 files changed

+4976
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.DS_Store
2+
.idea

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,17 @@ The following images are actively maintained by AWS CodeBuild, and are listed in
4343
+ [amazonlinux2-x86_64-standard:corretto11](al2/x86_64/standard/corretto11)
4444
+ [amazonlinux2-aarch64-standard:2.0](al2/aarch64/standard/2.0)
4545
+ [amazonlinux2-aarch64-standard:3.0](al2/aarch64/standard/3.0)
46+
+ [amazonlinux-x86_64-lambda-standard:corretto11](al-lambda/x86_64/corretto11)
47+
+ [amazonlinux-x86_64-lambda-standard:corretto17](al-lambda/x86_64/corretto17)
48+
+ [amazonlinux-x86_64-lambda-standard:dotnet6](al-lambda/x86_64/dotnet6)
49+
+ [amazonlinux-x86_64-lambda-standard:go1.21](al-lambda/x86_64/go1.21)
50+
+ [amazonlinux-x86_64-lambda-standard:nodejs18](al-lambda/x86_64/nodejs18)
51+
+ [amazonlinux-x86_64-lambda-standard:python3.11](al-lambda/x86_64/python3.11)
52+
+ [amazonlinux-x86_64-lambda-standard:ruby3.2](al-lambda/x86_64/ruby3.2)
53+
+ [amazonlinux-aarch64-lambda-standard:corretto11](al-lambda/aarch64/corretto11)
54+
+ [amazonlinux-aarch64-lambda-standard:corretto17](al-lambda/aarch64/corretto17)
55+
+ [amazonlinux-aarch64-lambda-standard:dotnet6](al-lambda/aarch64/dotnet6)
56+
+ [amazonlinux-aarch64-lambda-standard:go1.21](al-lambda/aarch64/go1.21)
57+
+ [amazonlinux-aarch64-lambda-standard:nodejs18](al-lambda/aarch64/nodejs18)
58+
+ [amazonlinux-aarch64-lambda-standard:python3.11](al-lambda/aarch64/python3.11)
59+
+ [amazonlinux-aarch64-lambda-standard:ruby3.2](al-lambda/aarch64/ruby3.2)
+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# Copyright 2020-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
#
3+
# Licensed under the Amazon Software License (the "License"). You may not use this file except in compliance with the License.
4+
# A copy of the License is located at
5+
#
6+
# http://aws.amazon.com/asl/
7+
#
8+
# or in the "license" file accompanying this file.
9+
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
10+
# See the License for the specific language governing permissions and limitations under the License.
11+
12+
FROM public.ecr.aws/lambda/java:11-arm64 AS core
13+
14+
# Install SSH, and other utilities
15+
RUN set -ex \
16+
&& yum install -y -q openssh-clients \
17+
&& mkdir ~/.ssh \
18+
&& mkdir -p /opt/tools \
19+
&& mkdir -p /codebuild/image/config \
20+
&& touch ~/.ssh/known_hosts \
21+
&& ssh-keyscan -t rsa,dsa,ed25519,ecdsa -H github.com >> ~/.ssh/known_hosts \
22+
&& ssh-keyscan -t rsa,dsa,ed25519,ecdsa -H bitbucket.org >> ~/.ssh/known_hosts \
23+
&& chmod 600 ~/.ssh/known_hosts \
24+
&& rpm --import https://download.mono-project.com/repo/xamarin.gpg \
25+
&& curl https://download.mono-project.com/repo/centos7-stable.repo | tee /etc/yum.repos.d/mono-centos7-stable.repo \
26+
&& yum groupinstall -y -q "Development tools" \
27+
&& yum install -y -q \
28+
ImageMagick asciidoc bzip2-devel cvs cvsps \
29+
docbook-dtds docbook-style-xsl e2fsprogs expat-devel expect fakeroot \
30+
glib2-devel groff gzip icu iptables jq krb5-server libargon2-devel \
31+
libcurl-devel libdb-devel libedit-devel libevent-devel libffi-devel \
32+
libicu-devel libjpeg-devel libpng-devel libserf sqlite-devel \
33+
libtidy-devel libunwind libwebp-devel libxml2-devel libxslt libxslt-devel \
34+
libyaml-devel libzip-devel mariadb105-devel mercurial mlocate \
35+
ncurses-devel oniguruma-devel openssl openssl-devel perl-DBD-SQLite \
36+
perl-DBI perl-HTTP-Date perl-TimeDate perl-YAML-LibYAML \
37+
postgresql-devel procps-ng python-configobj readline-devel rsync sgml-common \
38+
subversion-perl tar tcl tk vim wget which xfsprogs xmlto xorg-x11-server-Xvfb xz-devel \
39+
amazon-ecr-credential-helper \
40+
&& rm /etc/yum.repos.d/mono-centos7-stable.repo
41+
42+
RUN /usr/sbin/useradd codebuild-user
43+
44+
ENV HOME="/tmp"
45+
ENV LAMBDA_USER_HOME="/tmp/opt"
46+
#=======================End of layer: core =================
47+
48+
FROM core AS tools
49+
50+
# Install Git
51+
RUN set -ex \
52+
&& GIT_VERSION=2.41.0 \
53+
&& GIT_TAR_FILE=git-$GIT_VERSION.tar.gz \
54+
&& GIT_SRC=https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz \
55+
&& curl -L -o $GIT_TAR_FILE $GIT_SRC \
56+
&& tar zxf $GIT_TAR_FILE \
57+
&& cd git-$GIT_VERSION \
58+
&& make -j4 prefix=/usr \
59+
&& make install prefix=/usr \
60+
&& cd .. && rm -rf git-$GIT_VERSION \
61+
&& rm -rf $GIT_TAR_FILE /tmp/*
62+
63+
# Install AWS CLI v2
64+
# https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html
65+
RUN curl https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip -o /tmp/awscliv2.zip \
66+
&& unzip -q /tmp/awscliv2.zip -d /opt \
67+
&& /opt/aws/install --update -i /usr/local/aws-cli -b /usr/local/bin \
68+
&& rm /tmp/awscliv2.zip \
69+
&& rm -rf /opt/aws \
70+
&& aws --version
71+
72+
## Install AWS SAM CLI
73+
RUN yum install -y python3 python3-devel \
74+
&& pip3 install --upgrade pip \
75+
&& pip3 install aws-sam-cli \
76+
&& sam --version
77+
78+
# AWS Tools
79+
# https://docs.aws.amazon.com/eks/latest/userguide/install-aws-iam-authenticator.html https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI_installation.html
80+
RUN curl -sS -o /usr/local/bin/aws-iam-authenticator https://s3.us-west-2.amazonaws.com/amazon-eks/1.27.1/2023-04-19/bin/linux/arm64/aws-iam-authenticator \
81+
&& curl -sS -o /usr/local/bin/kubectl https://s3.us-west-2.amazonaws.com/amazon-eks/1.27.1/2023-04-19/bin/linux/arm64/kubectl \
82+
&& curl -sS -o /usr/local/bin/ecs-cli https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-linux-arm64-latest \
83+
&& curl -sS -L https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_Linux_arm64.tar.gz | tar xz -C /usr/local/bin \
84+
&& chmod +x /usr/local/bin/kubectl /usr/local/bin/aws-iam-authenticator /usr/local/bin/ecs-cli /usr/local/bin/eksctl
85+
#======================= End of layer: tools =================
86+
87+
FROM tools AS java_runtime
88+
89+
ENV MAVEN_HOME="/opt/maven" \
90+
MAVEN_VERSION=3.9.4 \
91+
GRADLE_VERSION=8.2.1 \
92+
ANT_VERSION=1.10.13 \
93+
GRADLE_PATH="$SRC_DIR/gradle" \
94+
MAVEN_DOWNLOAD_SHA512="deaa39e16b2cf20f8cd7d232a1306344f04020e1f0fb28d35492606f647a60fe729cc40d3cba33e093a17aed41bd161fe1240556d0f1b80e773abd408686217e" \
95+
GRADLE_DOWNLOADS_SHA256="7c3ad722e9b0ce8205b91560fd6ce8296ac3eadf065672242fd73c06b8eeb6ee" \
96+
ANT_DOWNLOAD_SHA512="de4ac604629e39a86a306f0541adb3775596909ad92feb8b7de759b1b286417db24f557228737c8b902d6abf722d2ce5bb0c3baa3640cbeec3481e15ab1958c9"
97+
98+
ARG MAVEN_CONFIG_HOME="/root/.m2"
99+
100+
# Install Maven
101+
RUN set -ex \
102+
&& mkdir -p $MAVEN_HOME \
103+
&& curl -LSso /var/tmp/apache-maven-$MAVEN_VERSION-bin.tar.gz https://apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz \
104+
&& echo "$MAVEN_DOWNLOAD_SHA512 /var/tmp/apache-maven-$MAVEN_VERSION-bin.tar.gz" | sha512sum -c - \
105+
&& tar xzvf /var/tmp/apache-maven-$MAVEN_VERSION-bin.tar.gz -C $MAVEN_HOME --strip-components=1 \
106+
&& rm /var/tmp/apache-maven-$MAVEN_VERSION-bin.tar.gz \
107+
&& /usr/sbin/update-alternatives --install /usr/bin/mvn mvn /opt/maven/bin/mvn 10000 \
108+
&& mkdir -p $MAVEN_CONFIG_HOME \
109+
# Install Gradle
110+
&& mkdir -p $GRADLE_PATH \
111+
&& wget -nv "https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-all.zip" -O "$GRADLE_PATH/gradle-$GRADLE_VERSION-all.zip" \
112+
&& unzip "$GRADLE_PATH/gradle-$GRADLE_VERSION-all.zip" -d /usr/local \
113+
&& echo "$GRADLE_DOWNLOADS_SHA256 $GRADLE_PATH/gradle-$GRADLE_VERSION-all.zip" | sha256sum -c - \
114+
&& rm "$GRADLE_PATH/gradle-$GRADLE_VERSION-all.zip" \
115+
# Install default GRADLE_VERSION to path
116+
&& ln -s /usr/local/gradle-$GRADLE_VERSION/bin/gradle /usr/bin/gradle \
117+
&& rm -rf $GRADLE_PATH \
118+
# Install Ant
119+
&& curl -LSso /var/tmp/apache-ant-$ANT_VERSION-bin.tar.gz https://archive.apache.org/dist/ant/binaries/apache-ant-$ANT_VERSION-bin.tar.gz \
120+
&& echo "$ANT_DOWNLOAD_SHA512 /var/tmp/apache-ant-$ANT_VERSION-bin.tar.gz" | sha512sum -c - \
121+
&& tar -xzf /var/tmp/apache-ant-$ANT_VERSION-bin.tar.gz -C /opt \
122+
&& rm /var/tmp/apache-ant-$ANT_VERSION-bin.tar.gz \
123+
&& /usr/sbin/update-alternatives --install /usr/bin/ant ant /opt/apache-ant-$ANT_VERSION/bin/ant 10000
124+
125+
COPY tools/runtime_configs/maven/settings.xml $MAVEN_HOME/conf/settings.xml
126+
127+
ENV GRADLE_USER_HOME $LAMBDA_USER_HOME/.gradle
128+
#=======================End of layer: java_runtime =================
129+
130+
FROM java_runtime AS al_v1
131+
132+
COPY legal/bill_of_material.txt /usr/share/doc/bill_of_material.txt
133+
134+
# Cleanup
135+
RUN rm -fr /tmp/*
136+
#=======================End of layer: al_lambda_v1 =================
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
The Amazon CodeBuild Product includes the following third-party software/licensing:
2+
3+
----------------
4+
GeoIP-devel : LGPLv2+ and GPLv2+ and CC-BY-SA
5+
----------------
6+
ImageMagick : ImageMagick
7+
----------------
8+
asciidoc : GPL+ and GPLv2+
9+
----------------
10+
bzip2-devel : BSD
11+
----------------
12+
bzr : GPLv2+
13+
----------------
14+
bzrtools : GPLv2+
15+
----------------
16+
cvs : BSD and GPL+ and GPLv2+ and LGPLv2+ and zlib and Public Domain
17+
----------------
18+
cvsps : GPL+
19+
----------------
20+
dbus-glib-devel : AFL and GPLv2+
21+
----------------
22+
docbook-dtds : Copyright only
23+
----------------
24+
docbook-style-xsl : DMIT
25+
----------------
26+
dpkg-dev : GPLv2 and GPLv2+ and LGPLv2+ and Public Domain and BSD
27+
----------------
28+
e2fsprogs : GPLv2
29+
----------------
30+
expat-devel : MIT
31+
----------------
32+
expect : Public Domain
33+
----------------
34+
fakeroot : GPLv3+ and LGPLv2+ and (GPL+ or Artistic)
35+
----------------
36+
glib2-devel : LGPLv2+
37+
----------------
38+
groff : GPLv3+ and GFDL and BSD and MIT
39+
----------------
40+
gtk3-devel : LGPLv2+
41+
----------------
42+
gzip : GPLv3+ and GFDL
43+
----------------
44+
icu : MIT and UCD and Public Domain
45+
----------------
46+
iptables : GPLv2
47+
----------------
48+
jq : MIT and ASL 2.0 and CC-BY and GPLv3
49+
----------------
50+
krb5-server : MIT
51+
----------------
52+
libargon2-devel : Public Domain or ASL 2.0
53+
----------------
54+
libcurl-devel : MIT
55+
----------------
56+
libdb-devel : BSD and LGPLv2 and Sleepycat
57+
----------------
58+
libedit-devel : BSD
59+
----------------
60+
libevent-devel : BSD
61+
----------------
62+
libffi-devel : MIT and Public Domain
63+
----------------
64+
libgit2 : GPLv2 with exceptions
65+
----------------
66+
libicu-devel : MIT and UCD and Public Domain
67+
----------------
68+
libpng-devel : zlib
69+
----------------
70+
libserf : ASL 2.0
71+
----------------
72+
libsqlite3x-devel : zlib
73+
----------------
74+
libtidy-devel : W3C
75+
----------------
76+
libunwind : BSD
77+
----------------
78+
libwebp-devel : BSD
79+
----------------
80+
libxml2-devel : MIT
81+
----------------
82+
libxslt : MIT
83+
----------------
84+
libxslt-devel : MIT
85+
----------------
86+
libyaml-devel : MIT
87+
----------------
88+
libzip-devel : BSD
89+
----------------
90+
mariadb-devel : GPLv2 with exceptions and LGPLv2 and BSD
91+
----------------
92+
mercurial : GPLv2+
93+
----------------
94+
mlocate : GPLv2
95+
----------------
96+
mono-devel : LGPL-2.1
97+
----------------
98+
ncurses-devel : MIT
99+
----------------
100+
oniguruma-devel : BSD
101+
----------------
102+
openssh-clients : BSD
103+
----------------
104+
openssl : OpenSSL
105+
----------------
106+
openssl-devel : OpenSSL
107+
----------------
108+
perl-DBD-SQLite : GPL+ or Artistic
109+
----------------
110+
perl-DBI : GPL+ or Artistic
111+
----------------
112+
perl-HTTP-Date : GPL+ or Artistic
113+
----------------
114+
perl-IO-Pty-Easy : GPL+ or Artistic
115+
----------------
116+
perl-TimeDate : GPL+ or Artistic
117+
----------------
118+
perl-YAML-LibYAML : GPL+ or Artistic
119+
----------------
120+
postgresql-devel : PostgreSQL
121+
----------------
122+
procps-ng : GPL+ and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+
123+
----------------
124+
readline-devel : GPLv3+
125+
----------------
126+
rsync : GPLv3+
127+
----------------
128+
sbt : BSD
129+
----------------
130+
sgml-common : GPL+
131+
----------------
132+
subversion-perl : ASL 2.0
133+
----------------
134+
tar : GPLv3+
135+
----------------
136+
tcl : TCL
137+
----------------
138+
tk : TCL
139+
----------------
140+
wget : GPLv3+
141+
----------------
142+
which : GPLv3
143+
----------------
144+
xfsprogs : GPL+ and LGPLv2+
145+
----------------
146+
xmlto : GPLv2+
147+
----------------
148+
xorg-x11-server-Xvfb : MIT and GPLv2
149+
----------------
150+
xz-devel : LGPLv2+
151+
----------------
152+
gitversion :https://github.com/GitTools/GitVersion/blob/master/LICENSE
153+
----------------
154+
docker :https://www.docker.com/legal/components-licenses
155+
----------------
156+
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.
157+
----------------
158+

0 commit comments

Comments
 (0)