2016-08-21 20:11:01 +00:00
|
|
|
{% if cookiecutter.use_python3 == 'y' -%}
|
2015-09-22 16:14:56 +00:00
|
|
|
FROM python:3.5
|
2015-09-18 16:39:45 +00:00
|
|
|
{% else %}
|
2015-07-16 15:43:02 +00:00
|
|
|
FROM python:2.7
|
2015-09-18 16:39:45 +00:00
|
|
|
{%- endif %}
|
2015-07-16 15:43:02 +00:00
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
|
|
|
|
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
2015-10-22 19:35:55 +00:00
|
|
|
COPY ./requirements /requirements
|
2015-07-16 15:43:02 +00:00
|
|
|
|
2016-06-12 04:22:35 +00:00
|
|
|
RUN pip install -r /requirements/production.txt \
|
|
|
|
|
&& groupadd -r django \
|
|
|
|
|
&& useradd -r -g django django
|
2015-07-16 15:43:02 +00:00
|
|
|
|
2015-10-22 19:35:55 +00:00
|
|
|
COPY . /app
|
2015-08-18 15:50:20 +00:00
|
|
|
RUN chown -R django /app
|
2015-07-16 15:43:02 +00:00
|
|
|
|
2015-10-22 19:35:55 +00:00
|
|
|
COPY ./compose/django/gunicorn.sh /gunicorn.sh
|
|
|
|
|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
|
2016-06-12 04:22:35 +00:00
|
|
|
RUN sed -i 's/\r//' /entrypoint.sh \
|
|
|
|
|
&& sed -i 's/\r//' /gunicorn.sh \
|
|
|
|
|
&& chmod +x /entrypoint.sh \
|
|
|
|
|
&& chown django /entrypoint.sh \
|
|
|
|
|
&& chmod +x /gunicorn.sh \
|
|
|
|
|
&& chown django /gunicorn.sh
|
2015-07-16 15:43:02 +00:00
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
2015-09-18 16:39:45 +00:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|