mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-23 18:14:01 +03:00
26 lines
649 B
Plaintext
26 lines
649 B
Plaintext
|
{% if cookiecutter.use_python2 == 'n' -%}
|
||
|
FROM python:3.5
|
||
|
{% else %}
|
||
|
FROM python:2.7
|
||
|
{%- endif %}
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
|
||
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
||
|
ADD ./requirements/local.txt /requirements/local.txt
|
||
|
|
||
|
RUN pip install -r /requirements/local.txt
|
||
|
|
||
|
RUN groupadd -r django && useradd -r -g django django
|
||
|
ADD . /app
|
||
|
RUN chown -R django /app
|
||
|
|
||
|
ADD ./compose/django/gunicorn.sh /gunicorn.sh
|
||
|
ADD ./compose/django/entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
RUN chmod +x /entrypoint.sh && chown django /entrypoint.sh
|
||
|
RUN chmod +x /gunicorn.sh && chown django /gunicorn.sh
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|