mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-12 04:38:07 +03:00
41059ff4df
Fixes #747
23 lines
552 B
Plaintext
23 lines
552 B
Plaintext
{% if cookiecutter.use_python3 == 'y' -%}
|
|
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
|
|
COPY ./requirements /requirements
|
|
RUN pip install -r /requirements/local.txt
|
|
|
|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
|
|
RUN sed -i 's/\r//' /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
COPY ./compose/django/start-dev.sh /start-dev.sh
|
|
RUN sed -i 's/\r//' /start-dev.sh
|
|
RUN chmod +x /start-dev.sh
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|