cookiecutter-django/{{cookiecutter.project_slug}}/compose/django/Dockerfile

30 lines
685 B
Docker
Raw Normal View History

FROM python:3.5
2017-05-06 15:43:26 +03:00
2015-07-16 18:43:02 +03:00
ENV PYTHONUNBUFFERED 1
2017-05-06 15:43:26 +03:00
RUN groupadd -r django \
&& useradd -r -g django django
2015-07-16 18:43:02 +03:00
# Requirements have to be pulled and installed here, otherwise caching won't work
COPY ./requirements /requirements
2017-05-06 15:43:26 +03:00
RUN pip install --no-cache-dir -r /requirements/production.txt \
&& rm -rf /requirements
2015-07-16 18:43:02 +03:00
2017-05-06 15:43:26 +03:00
COPY ./compose/django/gunicorn.sh ./compose/django/entrypoint.sh /
2016-06-12 07:22:35 +03: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 18:43:02 +03:00
2017-04-29 16:59:05 +03:00
COPY . /app
RUN chown -R django /app
2017-05-06 15:43:26 +03:00
2017-04-29 16:59:05 +03:00
USER django
2015-07-16 18:43:02 +03:00
WORKDIR /app
2015-09-18 19:39:45 +03:00
ENTRYPOINT ["/entrypoint.sh"]