File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,14 @@ ENV AWSCLI_URL https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip
12
12
RUN apt-get update && apt-get install -y \
13
13
dos2unix \
14
14
figlet \
15
+ nodejs \
16
+ npm \
15
17
vim
16
18
17
19
# Install Python Tools
18
20
# Boto3 is required for ansible to talk to AWS
19
21
RUN python -m pip install --upgrade pip
20
- RUN pip install ansible boto3
22
+ RUN pip install ansible aws-cdk-lib boto3 constructs==10.0.107
21
23
22
24
# Install AWSCLI
23
25
RUN curl -o /opt/awscliv2.zip $AWSCLI_URL && \
@@ -33,3 +35,6 @@ RUN curl -o /tmp/terraform.zip $TERRAFORM_URL && \
33
35
# Install Packer
34
36
RUN curl -o /tmp/packer.zip $PACKER_URL && \
35
37
unzip /tmp/packer.zip -d /usr/local/bin/
38
+
39
+ # Install AWS-CDK
40
+ RUN npm install -g aws-cdk
You can’t perform that action at this time.
0 commit comments