I have a Python 2.7 Google App Engine in the flexible environment. I deploy it using a Dockerfile with the command Gcloud App Deploy. The Dockerfile is in the same directory as app.yaml.
Last week this was working fine. Now, it ignores the Dockerfile and deploys to google cloud storage as if it didn't have a Dockerfile and was in the standard environment. (I always stop the deploy now, fearing the worst.) I recently upgraded gcloud. Current versions are: > Google Cloud SDK 280.0.0 > alpha 2020.02.07 > app-engine-python 1.9.88 > app-engine-python-extras 1.9.88 > beta 2020.02.07 > bq 2.0.53 > cloud-datastore-emulator 2.1.0 > core 2020.02.07 > gsutil 4.47 > kubectl 2020.02.07 My Dockerfile is: > FROM gcr.io/google-appengine/python > RUN apt-get update && apt-get install -y \ > binutils \ > gdal-bin \ > python-gdal > RUN virtualenv /env -p python3.6 > ENV VIRTUAL_ENV /env > ENV PATH /env/bin:$PATH > ADD requirements.txt /app/requirements.txt > RUN pip install -r /app/requirements.txt > ADD . /app > CMD gunicorn -b :$PORT mysite.wsgi Any insights are appreciated. - Dan Cogswell -- 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/28e3a516-e7ef-456b-943e-dd2f80f300aa%40googlegroups.com.
