Skip to content

Commit fe1a276

Browse files
committed
wait a bit longer
1 parent 9b321ba commit fe1a276

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/scripts/check_ecr_image_scan_results.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ function wait_for_scan() {
1818
echo "SCAN IS NOT YET COMPLETE..."
1919
sleep 3
2020
done
21-
echo "Final sleep to ensure suppressions are applied correctly"
22-
sleep 5
21+
echo "Final sleep to ensure findings are shown correctly"
22+
sleep 60
2323
}
2424

2525
function check_for_high_critical_vuln() {

docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ ENV PATH="$PATH:/home/cdkuser/.asdf/bin/:/home/cdkuser/node_modules/.bin"
3232
# Install ASDF plugins
3333
RUN asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
3434
# install some common node versions that are used in builds to speed things up
35-
RUN asdf install nodejs 20.19.1
36-
RUN asdf install nodejs 23.9.0
35+
RUN asdf install nodejs 20.19.1; \
36+
asdf install nodejs 23.9.0; \
37+
cd ~/.asdf/installs/nodejs/20.19.1/lib && npm update npm
3738

3839
# copy files needed for deployment
3940
COPY --chown=cdkuser docker/entrypoint.sh /home/cdkuser/

0 commit comments

Comments
 (0)