You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
293 B

FROM python:3
ENV PYTHONUNBUFFERED 1
RUN mkdir /django
ADD ./comet /django/
ADD ./requirements.txt /django/requirements.txt
WORKDIR /django
RUN pip install -r requirements.txt
CMD sleep 5; python manage.py migrate; python manage.py collectstatic --noinput; gunicorn comet.wsgi -b 0.0.0.0:8000