mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
b22045bcd4
Using system Python 3 distribution (3.7.3) in order to allow the use of Debian packages for numpy, scipy, etc. without the need of building them or installing build dependencies. Changed `#!/bin/sh` in shell scripts to `#!/bin/bash` to make `set -o pipefail` work.
47 lines
1.4 KiB
Docker
47 lines
1.4 KiB
Docker
FROM debian:buster-slim
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN apt-get update \
|
|
# dependencies for building Python packages
|
|
&& apt-get install -y build-essential python3-dev python3-pip \
|
|
# link the system python3 as just python for convenience
|
|
&& ln -s `which python3` /usr/local/bin/python \
|
|
# update pip et al
|
|
&& pip3 install -U pip setuptools wheel \
|
|
# psycopg2 dependencies
|
|
&& apt-get install -y libpq-dev \
|
|
# Translations dependencies
|
|
&& apt-get install -y gettext \
|
|
# cleaning up unused files
|
|
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Requirements are installed here to ensure they will be cached.
|
|
COPY ./requirements /requirements
|
|
RUN pip install -r /requirements/local.txt
|
|
|
|
COPY ./compose/production/django/entrypoint /entrypoint
|
|
RUN sed -i 's/\r$//g' /entrypoint
|
|
RUN chmod +x /entrypoint
|
|
|
|
COPY ./compose/local/django/start /start
|
|
RUN sed -i 's/\r$//g' /start
|
|
RUN chmod +x /start
|
|
{% if cookiecutter.use_celery == "y" %}
|
|
COPY ./compose/local/django/celery/worker/start /start-celeryworker
|
|
RUN sed -i 's/\r$//g' /start-celeryworker
|
|
RUN chmod +x /start-celeryworker
|
|
|
|
COPY ./compose/local/django/celery/beat/start /start-celerybeat
|
|
RUN sed -i 's/\r$//g' /start-celerybeat
|
|
RUN chmod +x /start-celerybeat
|
|
|
|
COPY ./compose/local/django/celery/flower/start /start-flower
|
|
RUN sed -i 's/\r$//g' /start-flower
|
|
RUN chmod +x /start-flower
|
|
{% endif %}
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint"]
|