Sam Stephens
Sam Stephens
Okay, I've confirmed this behavior myself. We can see that the assets for [release 3.0.24](https://github.com/cdklabs/cdk-ecr-deployment/releases/tag/v3.0.24) do not include the files `bootstrap` and `bootstrap.sha256` that previous releases have. When I try...
So we have two issues here: 1. That issues downloading `bootstrap` and `bootstrap.sha256` from Github are not being surfaced correctly. 2. That release 3.0.24 does not include `bootstrap` and `bootstrap.sha256`....
As part of considering this task and https://github.com/cdklabs/cdk-ecr-deployment/issues/526, I think we should consider whether the prebuilt Lambda functionality is too complex and brittle, and whether it should just be ripped...
@fabiozig good piece of analysis. I was seeing intermittent failures as I tried to track this down; they baffled me, so well done finding the failure scenario. I've been wondering...
> The file is not created when the docker image is built but when we try to download the bootstrap artifacts in the pipeline code below. Well spotted, my mistake....
@riosje apologies for the confusion here, this is my fault for editing the Dockerfile without retesting. I removed `RUN apt-get update --fix-missing && apt-get upgrade -y && apt-get dist-upgrade -y`...
@Mustafa1p I am aware of pipefail. I'm not asking for this guidance for myself. I'm wondering if the shell commands provided in the README can be made more robust.
@JesusPaz thanks for these changes. I want to be clear here, this isn't just about experience and knowledge. Regardless of your experience as a developer, if you used the instructions...
@riosje my point here is there's no end user mistake involved. The previously recommended instructions `curl -fsSL https://deb.nodesource.com/setup_20.x | bash -` were not robust and would fail confusingly if the...
So the issue here is that the botocore packaged with the AWS Lambda Python 3.9 image (at least at the time this issue was created) requires urlllib3 < 2. The...