Skip to content

aws/aws-codebuild-docker-images

Repository files navigation

AWS CodeBuild curated Docker images

This repository holds Dockerfiles of official AWS CodeBuild curated Docker images. Please refer to the AWS CodeBuild User Guide for list of environments supported by AWS CodeBuild.

Build Status

The master branch will sometimes have changes that are still in the process of being released in AWS CodeBuild. See the latest released versions of the Dockerfiles here

How to build Docker images

Steps to build Standard 7.0 image

  • Run git clone https://github.com/aws/aws-codebuild-docker-images.git to download this repository to your local machine
  • Run cd aws-codebuild-docker-images/ubuntu/standard/7.0 to change the directory in your local workspace. This is the location of the Standard 7.0 Dockerfile with Ubuntu base.
  • Run docker build -t aws/codebuild/standard:7.0 . to build Docker image locally

To poke around in the image interactively, build it and run: docker run -it --entrypoint sh aws/codebuild/standard:7.0 -c bash

To let the Docker daemon start up in the container, build it and run: docker run -it --privileged aws/codebuild/standard:7.0 bash

$ git clone https://github.com/aws/aws-codebuild-docker-images.git
$ cd aws-codebuild-docker-images
$ cd ubuntu/standard/7.0
$ docker build -t aws/codebuild/standard:7.0 .
$ docker run -it --entrypoint sh aws/codebuild/standard:7.0 -c bash

Image maintenance

Some of the images in this repository are no longer actively maintained by AWS CodeBuild and may no longer build successfully. These images will not receive any further updates. They remain in this repository as a reference for the contents of these images that were previously released by CodeBuild.

The following images are actively maintained by AWS CodeBuild, and are listed in the CodeBuild console.