Hello, I have a simple application running on a App Engine Standard with the runtime set to python37. Locally, I am using Docker and python image from Google, but it seems like I cannot match the version.
*Dockerfile* FROM gcr.io/google-appengine/python # Results in 3.6.8 ENV PIPENV_VENV_IN_PROJECT=/home/vmagent/app/.venv RUN pip3 install pipenv==2018.11.26 *app.yaml* service: name runtime: python37 manual_scaling: instances: 1 handlers: - url: /.* secure: always redirect_http_response_code: 301 script: auto Thanks! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/75d02291-8156-4032-b215-7410e495a861n%40googlegroups.com.
