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

23 lines
624 B
Docker
Raw Normal View History

2015-07-16 18:43:02 +03:00
FROM python:2.7
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
RUN groupadd -r django && useradd -r -g django django
2015-07-16 18:43:02 +03:00
ADD . /app
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
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
ENTRYPOINT ["/entrypoint.sh"]