mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-18 01:01:07 +00:00
- removed env.production and added a env.example that should be renamed to `.env` (not tracked by default)
- Refactored docker-compose.yml
* adding user to django, celeryworker, celerybeat so that we got rid of the `su` hack
* removed rabbitmq
- Refactored Dockerfile
- Refactored `entrypoint.sh` and added inline documentation
- Removed `su` hack from gunicorn.sh
- Added documentation
23 lines
No EOL
624 B
Docker
23 lines
No EOL
624 B
Docker
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
|
|
ADD . /app
|
|
RUN chown -R django /app
|
|
|
|
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
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |