Skip to content

Commit 496c4d2

Browse files
author
Xin Wang
committed
* Add a new image: Node.js 10.1.0
* Fix Ruby 2.5.1 Bundle install * Lock AWS CLI to major verion
1 parent b8433cd commit 496c4d2

File tree

25 files changed

+176
-23
lines changed

25 files changed

+176
-23
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The following images are actively maintained by AWS CodeBuild, and are listed in
4242
+ [golang 1.10](ubuntu/golang/1.10)
4343
+ [java openjdk-8](ubuntu/java/openjdk-8)
4444
+ [java openjdk-9](ubuntu/java/openjdk-9)
45+
+ [nodejs 10.1.0](ubuntu/nodejs/10.1.0)
4546
+ [nodejs 6.3.1](ubuntu/nodejs/6.3.1)
4647
+ [nodejs 8.11.0](ubuntu/nodejs/8.11.0)
4748
+ [php 5.6](ubuntu/php/5.6)

buildspec.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ phases:
2323
- docker build -t aws/codebuild/nodejs:6.3.1 .
2424
- cd $CODEBUILD_SRC_DIR/ubuntu/nodejs/8.11.0
2525
- docker build -t aws/codebuild/nodejs:8.11.0 .
26+
- cd $CODEBUILD_SRC_DIR/ubuntu/nodejs/10.1.0
27+
- docker build -t aws/codebuild/nodejs:10.1.0 .
2628
- cd $CODEBUILD_SRC_DIR/ubuntu/python/2.7.12
2729
- docker build -t aws/codebuild/python:2.7.12 .
2830
- cd $CODEBUILD_SRC_DIR/ubuntu/python/3.3.6

ubuntu/android-java-8/24.4.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

ubuntu/android-java-8/26.1.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

ubuntu/docker/17.09.0/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,10 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker
9494

9595
COPY dockerd-entrypoint.sh /usr/local/bin/
96+

ubuntu/dot-net/core-1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

ubuntu/dot-net/core-2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

ubuntu/golang/1.10/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

ubuntu/java/openjdk-8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

ubuntu/java/openjdk-9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ RUN set -ex \
8787
RUN set -ex \
8888
&& wget "https://bootstrap.pypa.io/2.6/get-pip.py" -O /tmp/get-pip.py \
8989
&& python /tmp/get-pip.py \
90-
&& pip install awscli \
90+
&& pip install awscli==1.* \
9191
&& rm -fr /var/lib/apt/lists/* /tmp/* /var/tmp/*
9292

9393
VOLUME /var/lib/docker

0 commit comments

Comments
 (0)