-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update EG to 1.16.11 #10105
Update EG to 1.16.11 #10105
Conversation
library/express-gateway
Outdated
@@ -1,7 +1,7 @@ | |||
Maintainers: The Express-Gateway Team <[email protected]> (@express_gateway) | |||
GitRepo: https://github.com/ExpressGateway/docker-express-gateway.git | |||
|
|||
Tags: 1.x, 1.16.x, 1.16.10, latest | |||
Tags: 1.x, 1.16.x, 1.16.11, latest | |||
Architectures: arm64v8, amd64, i386, ppc64le, s390x |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that node
images don't have i386
support anymore. (cause of GitHub Actions failure)
Edit: link to related node
issue: nodejs/docker-node#1344
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoa, ok!
Diff for e0f1679:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 6aeb523..87fdb5e 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -1,7 +1,7 @@
Maintainers: The Express-Gateway Team <[email protected]> (@express_gateway)
GitRepo: https://github.com/ExpressGateway/docker-express-gateway.git
-Tags: 1.x, 1.16.x, 1.16.10, latest
-Architectures: amd64, arm64v8, i386, ppc64le, s390x
-GitCommit: 704432298a3b9a99de87fcb19b33962e6995b7a3
+Tags: 1.x, 1.16.x, 1.16.11, latest
+Architectures: amd64, arm64v8, ppc64le, s390x
+GitCommit: fa2707c3b24bbd99710a100d7859566fa28817b8
Directory: alpine
diff --git a/_bashbrew-list b/_bashbrew-list
index 9af43a4..d4b3155 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,4 +1,4 @@
express-gateway:1.x
express-gateway:1.16.x
-express-gateway:1.16.10
+express-gateway:1.16.11
express-gateway:latest
diff --git a/express-gateway_latest/Dockerfile b/express-gateway_latest/Dockerfile
index 308bbdd..7221b4e 100644
--- a/express-gateway_latest/Dockerfile
+++ b/express-gateway_latest/Dockerfile
@@ -1,8 +1,8 @@
-FROM node:10-alpine
+FROM node:12-alpine
LABEL maintainer Vincenzo Chianese, [email protected]
-ARG EG_VERSION=1.16.10
+ARG EG_VERSION=1.16.11
RUN yarn global add express-gateway@$EG_VERSION && yarn cache clean
|
Thanks for the quick responses! |
It also changes the base imge to node 12