i am trying to deploy Django project and get error Updating service [default] (this may take several minutes)...failed. ERROR: (gcloud.app.deploy) Error Response: [9] Application startup error! Code: APP_CONTAINER_CRASHED my dockerfile RUN apt-get install -y python3-pip libgdal-dev locales
# Ensure locales configured correctly RUN locale-gen en_IN.UTF-8 ENV LC_ALL='en_IN.UTF-8' # Set python aliases for python3 RUN echo 'alias python=python3' >> ~/.bashrc RUN echo 'alias pip=pip3' >> ~/.bashrc # Update C env vars so compiler can find gdal ENV CPLUS_INCLUDE_PATH=/usr/include/gdal ENV C_INCLUDE_PATH=/usr/include/gdal # This will install latest version of GDAL RUN pip3 install GDAL==2.4.2 -- 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 google-appengine+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3f422ca7-40fb-47e2-aace-ac1188d7765fn%40googlegroups.com.