Skip to content

Commit

Permalink
test(eks): Dockerfile used in an integ test fails (#27686)
Browse files Browse the repository at this point in the history
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*
  • Loading branch information
go-to-k authored Nov 6, 2023
1 parent 7c497ee commit 7385ffb
Show file tree
Hide file tree
Showing 2 changed files with 1,016 additions and 1,032 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 node:18-alpine3.13
FROM --platform=linux/amd64 node:18-alpine3.18

# Create app directory
RUN mkdir -p /usr/src/app
Expand Down
Loading

0 comments on commit 7385ffb

Please sign in to comment.