Skip to content

Commit 7385ffb

Browse files
authored
test(eks): Dockerfile used in an integ test fails (#27686)
This PR fixes that a Dockerfile used in an integ test fails. I changed because `node:18-alpine3.13` image is no longer accessible and occurred errors. ``` [+] Building 2.8s (3/3) FINISHED => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 391B 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 90B 0.0s => ERROR [internal] load metadata for docker.io/library/node:18-alpine3.13 2.6s ------ > [internal] load metadata for docker.io/library/node:18-alpine3.13: ------ failed to solve with frontend dockerfile.v0: failed to create LLB definition: docker.io/library/node:18-alpine3.13: not found ``` Also, I updated package-lock.json since there was a difference from package.json. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 7c497ee commit 7385ffb

File tree

2 files changed

+1016
-1032
lines changed

2 files changed

+1016
-1032
lines changed

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/sdk-call-integ-test-docker-app/app/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 node:18-alpine3.13
1+
FROM --platform=linux/amd64 node:18-alpine3.18
22

33
# Create app directory
44
RUN mkdir -p /usr/src/app

0 commit comments

Comments
 (0)