Skip to content

Commit

Permalink
update alpine 3.13 -> 3.15, cdk 1.105.0 -> 1.134.0
Browse files Browse the repository at this point in the history
This brings the image to the latest versions of alpine and cdk.

I needed to do this because I encountered this bug in aws-cdk:

aws/aws-cdk#14738

Just doing the workaround inside a Dockerfile based on
`contino/aws-cdk` did not work for me.  But rebuilding the image
itself did.
  • Loading branch information
thalesmg committed Nov 26, 2021
1 parent 8b230db commit d02a260
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ALPINE_VERSION=3.13
ARG AWS_CDK_VERSION=1.105.0
ARG ALPINE_VERSION=3.15
ARG AWS_CDK_VERSION=1.134.0
FROM alpine:${ALPINE_VERSION}

RUN apk -v --no-cache --update add \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AWS_CDK_VERSION = 1.105.0
AWS_CDK_VERSION = 1.134.0
IMAGE_NAME ?= contino/aws-cdk:$(AWS_CDK_VERSION)
TAG = $(AWS_CDK_VERSION)

Expand Down

0 comments on commit d02a260

Please sign in to comment.