mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-23 18:14:01 +03:00
6aced9ba73
* Remove Python 2.7 support per * Remove Python 2.7 references * Remove Python 2.7 references * remove python 2 entirely
26 lines
661 B
Docker
26 lines
661 B
Docker
FROM python:3.5
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Requirements have to be pulled and installed here, otherwise caching won't work
|
|
COPY ./requirements /requirements
|
|
|
|
RUN pip install -r /requirements/production.txt \
|
|
&& groupadd -r django \
|
|
&& useradd -r -g django django
|
|
|
|
COPY . /app
|
|
RUN chown -R django /app
|
|
|
|
COPY ./compose/django/gunicorn.sh /gunicorn.sh
|
|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
|
|
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
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|