0

The default google-managed-vms python runtime is google/appengine-python27 a docker image based on google/debian:wheezy

How to setup a custom python runtime that would extend debian:testing and would support:

  • Datastore
  • Memcache
  • Task Queues
  • Logging

as google/appengine-python27 does ?

4

1 回答 1

0

在那里阅读!

您可以开始创建一个扩展 google/appengine-python27 的 Dockerfile,为此您的 Dockerfile 需要启动,如下所示

# The image is based on the Debian Wheezy distribution.
FROM google/appengine-python

如此处所述

在此处输入图像描述

于 2015-04-14T10:48:45.660 回答