Skip to content

Latest commit

 

History

History

cdk-python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

cdk-python

alpine:edge-based dockerization of AWS CDK, the AWS Cloud Development Kit and Python.

As the site says:

The AWS Cloud Development Kit (AWS CDK) is an open source software development framework to define your cloud application resources using familiar programming languages.

The source code for this image is hosted on GitHub in the backplane/conex repo.

Usage

Interactive

The following shell function can assist in running this image interactively:

cdk-python() {
  docker run \
    --rm \
    --interactive \
    --tty \
    --volume "awsconfig:/config" \
    --volume "$(pwd):/work" \
    "backplane/cdk-python" \
    "$@"
}