From d02a260a4fecddca5bbc3623e34d2896312863bc Mon Sep 17 00:00:00 2001 From: Thales Macedo Garitezi Date: Fri, 26 Nov 2021 15:34:20 -0300 Subject: [PATCH] update alpine 3.13 -> 3.15, cdk 1.105.0 -> 1.134.0 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: https://github.com/aws/aws-cdk/issues/14738 Just doing the workaround inside a Dockerfile based on `contino/aws-cdk` did not work for me. But rebuilding the image itself did. --- Dockerfile | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6316bff..e1bcfff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ diff --git a/Makefile b/Makefile index c1e42fe..049c154 100644 --- a/Makefile +++ b/Makefile @@ -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)