我们如何更改 OS 以便 Google App Engine 灵活?或者我们可以这样做吗?
How we can change OS for Google App Engine flexible? Or can we do this at all?
我总是以这样的结尾:
Linux gae-default-1-c9cf 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u2 (2016-10-19) x86_64
但我需要 glibc 2.14 的另一个版本。
当前的一个glibc是2.13:
ldd (Debian EGLIBC 2.13-38+deb7u11) 2.13
而且我无法在 OS 上升级 glibc,因为在 apt-get update
和 apt-get install libc6
之后我得到了这个:
Reading package lists... Done
Building dependency tree
Reading state information... Done
libc6 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
我无法修改 sources.list
因为:
-bash: /etc/apt/sources.list: Permission denied
所以我只需要另一个 OS 用于我的 GAE 灵活应用程序。这可能吗?
是的,您可以通过引用符合您要求的文件或从头开始指定来构建自定义 dockerfile:Building Custom Runtimes
我总是以这样的结尾:
Linux gae-default-1-c9cf 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u2 (2016-10-19) x86_64
但我需要 glibc 2.14 的另一个版本。
当前的一个glibc是2.13:
ldd (Debian EGLIBC 2.13-38+deb7u11) 2.13
而且我无法在 OS 上升级 glibc,因为在 apt-get update
和 apt-get install libc6
之后我得到了这个:
Reading package lists... Done
Building dependency tree
Reading state information... Done
libc6 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
我无法修改 sources.list
因为:
-bash: /etc/apt/sources.list: Permission denied
所以我只需要另一个 OS 用于我的 GAE 灵活应用程序。这可能吗?
是的,您可以通过引用符合您要求的文件或从头开始指定来构建自定义 dockerfile:Building Custom Runtimes