2015-09-18 21:02:33 +03:00
|
|
|
{% if cookiecutter.use_python2 == 'n' -%}
|
2015-09-18 19:39:45 +03:00
|
|
|
FROM python:3.4
|
|
|
|
{% else %}
|
2015-07-16 18:43:02 +03:00
|
|
|
FROM python:2.7
|
2015-09-18 19:39:45 +03:00
|
|
|
{%- endif %}
|
2015-07-16 18:43:02 +03:00
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
|
|
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
|
|
|
ADD ./requirements /requirements
|
|
|
|
ADD ./requirements.txt /requirements.txt
|
|
|
|
|
|
|
|
RUN pip install -r /requirements.txt
|
|
|
|
RUN pip install -r /requirements/local.txt
|
|
|
|
|
2015-08-18 18:50:20 +03:00
|
|
|
RUN groupadd -r django && useradd -r -g django django
|
2015-07-16 18:43:02 +03:00
|
|
|
ADD . /app
|
2015-08-18 18:50:20 +03:00
|
|
|
RUN chown -R django /app
|
2015-07-16 18:43:02 +03:00
|
|
|
|
|
|
|
ADD ./compose/django/gunicorn.sh /gunicorn.sh
|
|
|
|
ADD ./compose/django/entrypoint.sh /entrypoint.sh
|
|
|
|
|
2015-08-18 18:50:20 +03:00
|
|
|
RUN chmod +x /entrypoint.sh && chown django /entrypoint.sh
|
|
|
|
RUN chmod +x /gunicorn.sh && chown django /gunicorn.sh
|
2015-07-16 18:43:02 +03:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2015-09-18 19:39:45 +03:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|