cookiecutter-django/{{cookiecutter.repo_name}}/Dockerfile

27 lines
705 B
Docker
Raw Normal View History

2015-09-18 21:02:33 +03:00
{% if cookiecutter.use_python2 == 'n' -%}
FROM python:3.5
2015-09-18 19:39:45 +03:00
{% 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
COPY ./requirements /requirements
2015-07-16 18:43:02 +03:00
RUN pip install -r /requirements/production.txt
2015-07-16 18:43:02 +03:00
RUN groupadd -r django && useradd -r -g django django
COPY . /app
RUN chown -R django /app
2015-07-16 18:43:02 +03:00
COPY ./compose/django/gunicorn.sh /gunicorn.sh
COPY ./compose/django/entrypoint.sh /entrypoint.sh
RUN sed -i 's/\r//' /entrypoint.sh
2016-01-08 12:15:37 +03:00
RUN sed -i 's/\r//' /gunicorn.sh
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"]