Skip to content

Commit ecca2cd

Browse files
committed
Add AWS CodeBuild curated docker images Dockerfiles
0 parents  commit ecca2cd

File tree

35 files changed

+2266
-0
lines changed

35 files changed

+2266
-0
lines changed

LICENSE.txt

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
Amazon Software License 1.0
2+
3+
This Amazon Software License ("License") governs your use, reproduction, and
4+
distribution of the accompanying software as specified below.
5+
6+
1. Definitions
7+
8+
"Licensor" means any person or entity that distributes its Work.
9+
10+
"Software" means the original work of authorship made available under this
11+
License.
12+
13+
"Work" means the Software and any additions to or derivative works of the
14+
Software that are made available under this License.
15+
16+
The terms "reproduce," "reproduction," "derivative works," and
17+
"distribution" have the meaning as provided under U.S. copyright law;
18+
provided, however, that for the purposes of this License, derivative works
19+
shall not include works that remain separable from, or merely link (or bind
20+
by name) to the interfaces of, the Work.
21+
22+
Works, including the Software, are "made available" under this License by
23+
including in or with the Work either (a) a copyright notice referencing the
24+
applicability of this License to the Work, or (b) a copy of this License.
25+
26+
2. License Grants
27+
28+
2.1 Copyright Grant. Subject to the terms and conditions of this License,
29+
each Licensor grants to you a perpetual, worldwide, non-exclusive,
30+
royalty-free, copyright license to reproduce, prepare derivative works of,
31+
publicly display, publicly perform, sublicense and distribute its Work and
32+
any resulting derivative works in any form.
33+
34+
2.2 Patent Grant. Subject to the terms and conditions of this License, each
35+
Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free
36+
patent license to make, have made, use, sell, offer for sale, import, and
37+
otherwise transfer its Work, in whole or in part. The foregoing license
38+
applies only to the patent claims licensable by Licensor that would be
39+
infringed by Licensor's Work (or portion thereof) individually and
40+
excluding any combinations with any other materials or technology.
41+
42+
3. Limitations
43+
44+
3.1 Redistribution. You may reproduce or distribute the Work only if
45+
(a) you do so under this License, (b) you include a complete copy of this
46+
License with your distribution, and (c) you retain without modification
47+
any copyright, patent, trademark, or attribution notices that are present
48+
in the Work.
49+
50+
3.2 Derivative Works. You may specify that additional or different terms
51+
apply to the use, reproduction, and distribution of your derivative works
52+
of the Work ("Your Terms") only if (a) Your Terms provide that the use
53+
limitation in Section 3.3 applies to your derivative works, and (b) you
54+
identify the specific derivative works that are subject to Your Terms.
55+
Notwithstanding Your Terms, this License (including the redistribution
56+
requirements in Section 3.1) will continue to apply to the Work itself.
57+
58+
3.3 Use Limitation. The Work and any derivative works thereof only may be
59+
used or intended for use with the web services, computing platforms or
60+
applications provided by Amazon.com, Inc. or its affiliates, including
61+
Amazon Web Services, Inc.
62+
63+
3.4 Patent Claims. If you bring or threaten to bring a patent claim against
64+
any Licensor (including any claim, cross-claim or counterclaim in a
65+
lawsuit) to enforce any patents that you allege are infringed by any Work,
66+
then your rights under this License from such Licensor (including the
67+
grants in Sections 2.1 and 2.2) will terminate immediately.
68+
69+
3.5 Trademarks. This License does not grant any rights to use any
70+
Licensor's or its affiliates' names, logos, or trademarks, except as
71+
necessary to reproduce the notices described in this License.
72+
73+
3.6 Termination. If you violate any term of this License, then your rights
74+
under this License (including the grants in Sections 2.1 and 2.2) will
75+
terminate immediately.
76+
77+
4. Disclaimer of Warranty.
78+
79+
THE WORK IS PROVIDED "AS IS" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
80+
EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OR CONDITIONS OF
81+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR
82+
NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING ANY ACTIVITIES UNDER
83+
THIS LICENSE. SOME STATES' CONSUMER LAWS DO NOT ALLOW EXCLUSION OF AN
84+
IMPLIED WARRANTY, SO THIS DISCLAIMER MAY NOT APPLY TO YOU.
85+
86+
5. Limitation of Liability.
87+
88+
EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL
89+
THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE
90+
SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT,
91+
INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR
92+
RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING
93+
BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS
94+
OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER COMM ERCIAL DAMAGES
95+
OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF
96+
SUCH DAMAGES.

NOTICE.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
aws-codebuild-docker-images
2+
3+
Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# AWS CodeBuild curated Docker images
2+
3+
This repository holds Dockerfiles of official AWS CodeBuild curated Docker images. Please refer to [the AWS CodeBuild User Guide](http://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref.html) for list of environments supported by AWS CodeBuild.
4+
5+
### How to build Docker images
6+
7+
Steps to build Ruby-2.3.1 image
8+
9+
* Run `git clone https://github.com/aws/aws-codebuild-docker-images.git` to download this repository to your local machine
10+
* Run `cd ubuntu/ruby/2.3.1` to change the directory in your local workspace. This is the location of Ruby-2.3.1 Dockerfile with Ubuntu base.
11+
* Run `docker build -t aws/codebuild/ruby-2.3.1 .` to build Docker image locally
12+
* Once succeeded, your can run `docker run -ti aws/codebuild/ruby-2.3.1 bash` to start container running `bash` shell with the ruby-2.3.1 image.
13+
14+
15+
```
16+
$ git clone https://github.com/aws/aws-codebuild-docker-images.git
17+
$ cd aws-codebuild-docker-images
18+
$ cd ubuntu/ruby/2.3.1
19+
$ docker build -t aws/codebuild/ruby-2.3.1 .
20+
```
+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Copyright 2017-2017 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+
13+
FROM ubuntu:14.04.5
14+
15+
# Building git from source code:
16+
# Ubuntu's default git package is built with broken gnutls. Rebuild git with openssl.
17+
##########################################################################
18+
RUN apt-get update \
19+
&& apt-get install -y --no-install-recommends \
20+
wget python python2.7-dev fakeroot ca-certificates tar gzip zip \
21+
autoconf automake bzip2 file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev \
22+
libdb-dev libevent-dev libffi-dev libgeoip-dev libglib2.0-dev libjpeg-dev libkrb5-dev \
23+
liblzma-dev libmagickcore-dev libmagickwand-dev libmysqlclient-dev libncurses-dev libpng-dev \
24+
libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev \
25+
libyaml-dev make patch xz-utils zlib1g-dev unzip curl \
26+
&& apt-get -qy build-dep git \
27+
&& apt-get -qy install libcurl4-openssl-dev git-man liberror-perl \
28+
&& mkdir -p /usr/src/git-openssl \
29+
&& cd /usr/src/git-openssl \
30+
&& apt-get source git \
31+
&& cd $(find -mindepth 1 -maxdepth 1 -type d -name "git-*") \
32+
&& sed -i -- 's/libcurl4-gnutls-dev/libcurl4-openssl-dev/' ./debian/control \
33+
&& sed -i -- '/TEST\s*=\s*test/d' ./debian/rules \
34+
&& dpkg-buildpackage -rfakeroot -b \
35+
&& find .. -type f -name "git_*ubuntu*.deb" -exec dpkg -i \{\} \; \
36+
&& rm -rf /usr/src/git-openssl \
37+
# Install dependencies by all python images equivalent to buildpack-deps:jessie
38+
# on the public repos.
39+
&& rm -rf /var/lib/apt/lists/* \
40+
&& apt-get clean
41+
42+
RUN wget "https://bootstrap.pypa.io/get-pip.py" -O /tmp/get-pip.py \
43+
&& python /tmp/get-pip.py \
44+
&& pip install awscli==1.11.25 \
45+
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
46+
47+
48+
# Copy install tools
49+
COPY tools /opt/tools
50+
51+
ENV ANDROID_HOME="/usr/local/android-sdk-linux" \
52+
JAVA_HOME="/usr/lib/jvm/java-6-oracle" \
53+
JDK_HOME="/usr/lib/jvm/java-6-oracle" \
54+
JAVA_VERSION="6" \
55+
INSTALLED_GRADLE_VERSIONS="2.10 2.11 2.12 2.13 2.14.1" \
56+
GRADLE_VERSION="2.14.1" \
57+
ANDROID_TOOLS_VER="24.4.1" \
58+
ANDROID_TOOLS_SHA1="725bb360f0f7d04eaccff5a2d57abdd49061326d"
59+
ENV PATH="${PATH}:/opt/tools:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools" \
60+
JAVA_PACKAGE_VERSION="${JAVA_VERSION}u45-0~webupd8~8"
61+
62+
# Install java6
63+
RUN apt-get update \
64+
&& apt-get install -y software-properties-common \
65+
&& add-apt-repository -y ppa:webupd8team/java \
66+
&& (echo oracle-java$JAVA_VERSION-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections) \
67+
&& apt-get update \
68+
&& apt-get install -y oracle-java$JAVA_VERSION-installer=$JAVA_PACKAGE_VERSION \
69+
&& apt-get install -y -qq less groff \
70+
&& dpkg --add-architecture i386 \
71+
&& apt-get update && apt-get install -y --force-yes expect libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1 libqt5widgets5 \
72+
&& apt-get clean \
73+
# Precache most relevant versions of Gradle for `gradlew` scripts
74+
&& mkdir -p /usr/src/gradle \
75+
&& for version in $INSTALLED_GRADLE_VERSIONS; do {\
76+
wget "https://services.gradle.org/distributions/gradle-$version-all.zip" -O "/usr/src/gradle/gradle-$version-all.zip" \
77+
&& unzip "/usr/src/gradle/gradle-$version-all.zip" -d /usr/local \
78+
&& mkdir "/tmp/gradle-$version" \
79+
&& "/usr/local/gradle-$version/bin/gradle" -p "/tmp/gradle-$version" wrapper \
80+
# Android Studio uses the "-all" distribution for it's wrapper script.
81+
&& perl -pi -e "s/gradle-$version-bin.zip/gradle-$version-all.zip/" "/tmp/gradle-$version/gradle/wrapper/gradle-wrapper.properties" \
82+
&& "/tmp/gradle-$version/gradlew" -p "/tmp/gradle-$version" init \
83+
&& rm -rf "/tmp/gradle-$version" \
84+
&& if [ "$version" != "$GRADLE_VERSION" ]; then rm -rf "/usr/local/gradle-$version"; fi; \
85+
}; done \
86+
# Install default GRADLE_VERSION to path
87+
&& ln -s /usr/local/gradle-$GRADLE_VERSION/bin/gradle /usr/bin/gradle \
88+
&& rm -rf /usr/src/gradle \
89+
# Install Android SDK
90+
&& wget "http://dl.google.com/android/android-sdk_r$ANDROID_TOOLS_VER-linux.tgz" -O /tmp/android-sdk.tgz \
91+
&& echo "${ANDROID_TOOLS_SHA1} /tmp/android-sdk.tgz" | sha1sum -c - \
92+
&& tar -xzf /tmp/android-sdk.tgz -C /usr/local/ \
93+
&& chown -R root.root $ANDROID_HOME \
94+
&& ln -s $ANDROID_HOME/tools/android /usr/bin/android \
95+
&& /opt/tools/android-accept-licenses.sh "android update sdk --all --no-ui --filter platform-tools,build-tools-25.0.0,build-tools-23.0.3,android-23,android-25" \
96+
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/expect -f
2+
3+
set timeout 1800
4+
set cmd [lindex $argv 0]
5+
set licenses [lindex $argv 1]
6+
7+
spawn {*}$cmd
8+
expect {
9+
"Do you accept the license '*'*" {
10+
exp_send "y\r"
11+
exp_continue
12+
}
13+
eof
14+
}
+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Copyright 2017-2017 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+
13+
FROM ubuntu:14.04.5
14+
15+
# Building git from source code:
16+
# Ubuntu's default git package is built with broken gnutls. Rebuild git with openssl.
17+
##########################################################################
18+
RUN apt-get update \
19+
&& apt-get install -y --no-install-recommends \
20+
wget python python2.7-dev fakeroot ca-certificates tar gzip zip \
21+
autoconf automake bzip2 file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev \
22+
libdb-dev libevent-dev libffi-dev libgeoip-dev libglib2.0-dev libjpeg-dev libkrb5-dev \
23+
liblzma-dev libmagickcore-dev libmagickwand-dev libmysqlclient-dev libncurses-dev libpng-dev \
24+
libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev \
25+
libyaml-dev make patch xz-utils zlib1g-dev unzip curl \
26+
&& apt-get -qy build-dep git \
27+
&& apt-get -qy install libcurl4-openssl-dev git-man liberror-perl \
28+
&& mkdir -p /usr/src/git-openssl \
29+
&& cd /usr/src/git-openssl \
30+
&& apt-get source git \
31+
&& cd $(find -mindepth 1 -maxdepth 1 -type d -name "git-*") \
32+
&& sed -i -- 's/libcurl4-gnutls-dev/libcurl4-openssl-dev/' ./debian/control \
33+
&& sed -i -- '/TEST\s*=\s*test/d' ./debian/rules \
34+
&& dpkg-buildpackage -rfakeroot -b \
35+
&& find .. -type f -name "git_*ubuntu*.deb" -exec dpkg -i \{\} \; \
36+
&& rm -rf /usr/src/git-openssl \
37+
# Install dependencies by all python images equivalent to buildpack-deps:jessie
38+
# on the public repos.
39+
&& rm -rf /var/lib/apt/lists/* \
40+
&& apt-get clean
41+
42+
RUN wget "https://bootstrap.pypa.io/get-pip.py" -O /tmp/get-pip.py \
43+
&& python /tmp/get-pip.py \
44+
&& pip install awscli==1.11.25 \
45+
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
46+
47+
48+
# Copy install tools
49+
COPY tools /opt/tools
50+
51+
ENV ANDROID_HOME="/usr/local/android-sdk-linux" \
52+
JAVA_HOME="/usr/lib/jvm/java-7-oracle" \
53+
JDK_HOME="/usr/lib/jvm/java-7-oracle" \
54+
JAVA_VERSION="7" \
55+
INSTALLED_GRADLE_VERSIONS="2.10 2.11 2.12 2.13 2.14.1" \
56+
GRADLE_VERSION="2.14.1" \
57+
ANDROID_TOOLS_VER="24.4.1" \
58+
ANDROID_TOOLS_SHA1="725bb360f0f7d04eaccff5a2d57abdd49061326d"
59+
ENV PATH="${PATH}:/opt/tools:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools" \
60+
JAVA_PACKAGE_VERSION="${JAVA_VERSION}u80+7u60arm-0~webupd8~1"
61+
62+
# Install java7
63+
RUN apt-get update \
64+
&& apt-get install -y software-properties-common \
65+
&& add-apt-repository -y ppa:webupd8team/java \
66+
&& (echo oracle-java$JAVA_VERSION-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections) \
67+
&& apt-get update \
68+
&& apt-get install -y oracle-java$JAVA_VERSION-installer=$JAVA_PACKAGE_VERSION \
69+
&& apt-get install -y -qq less groff \
70+
&& dpkg --add-architecture i386 \
71+
&& apt-get update && apt-get install -y --force-yes expect libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1 libqt5widgets5 \
72+
&& apt-get clean \
73+
# Precache most relevant versions of Gradle for `gradlew` scripts
74+
&& mkdir -p /usr/src/gradle \
75+
&& for version in $INSTALLED_GRADLE_VERSIONS; do {\
76+
wget "https://services.gradle.org/distributions/gradle-$version-all.zip" -O "/usr/src/gradle/gradle-$version-all.zip" \
77+
&& unzip "/usr/src/gradle/gradle-$version-all.zip" -d /usr/local \
78+
&& mkdir "/tmp/gradle-$version" \
79+
&& "/usr/local/gradle-$version/bin/gradle" -p "/tmp/gradle-$version" wrapper \
80+
# Android Studio uses the "-all" distribution for it's wrapper script.
81+
&& perl -pi -e "s/gradle-$version-bin.zip/gradle-$version-all.zip/" "/tmp/gradle-$version/gradle/wrapper/gradle-wrapper.properties" \
82+
&& "/tmp/gradle-$version/gradlew" -p "/tmp/gradle-$version" init \
83+
&& rm -rf "/tmp/gradle-$version" \
84+
&& if [ "$version" != "$GRADLE_VERSION" ]; then rm -rf "/usr/local/gradle-$version"; fi; \
85+
}; done \
86+
# Install default GRADLE_VERSION to path
87+
&& ln -s /usr/local/gradle-$GRADLE_VERSION/bin/gradle /usr/bin/gradle \
88+
&& rm -rf /usr/src/gradle \
89+
# Install Android SDK
90+
&& wget "http://dl.google.com/android/android-sdk_r$ANDROID_TOOLS_VER-linux.tgz" -O /tmp/android-sdk.tgz \
91+
&& echo "${ANDROID_TOOLS_SHA1} /tmp/android-sdk.tgz" | sha1sum -c - \
92+
&& tar -xzf /tmp/android-sdk.tgz -C /usr/local/ \
93+
&& chown -R root.root $ANDROID_HOME \
94+
&& ln -s $ANDROID_HOME/tools/android /usr/bin/android \
95+
&& /opt/tools/android-accept-licenses.sh "android update sdk --all --no-ui --filter platform-tools,build-tools-25.0.0,build-tools-23.0.3,android-23,android-25" \
96+
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/expect -f
2+
3+
set timeout 1800
4+
set cmd [lindex $argv 0]
5+
set licenses [lindex $argv 1]
6+
7+
spawn {*}$cmd
8+
expect {
9+
"Do you accept the license '*'*" {
10+
exp_send "y\r"
11+
exp_continue
12+
}
13+
eof
14+
}

0 commit comments

Comments
 (0)