Hi Katayoon,

Yes, i Know that i need custom runtime and Dockerfile, but how start Celery 
process and my django app.

example: 

FROM gcr.io/google-appengine/python
LABEL python_version=python3.6
RUN virtualenv --no-download /env -p python3.6

# Set virtualenv environment variables. This is equivalent to running
# source /env/bin/activate
ENV VIRTUAL_ENV /env
ENV PATH /env/bin:$PATH
ADD requirements.txt /app/
RUN pip install -r requirements.txt
ADD . /app/
CMD exec gunicorn --timeout 1500 -b :$PORT niproyecciones.wsgi

maybe i need supervisor?

El martes, 10 de julio de 2018, 17:36:45 (UTC-5), Katayoon (Cloud Platform 
Support) escribió:
>
> Hi Julio,
>
> Yes, you need to create a custom runtime 
> <https://cloud.google.com/appengine/docs/flexible/custom-runtimes/build> 
> to include additional components like Celery by creating your base image 
> and using a Dockerfile <https://docs.docker.com/engine/reference/builder/> 
> that configures the runtime environment.
>
>

-- 
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 post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/41a29fca-d12a-4300-a6ad-49d439fc4b04%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to