20 lines
495 B
Plaintext
20 lines
495 B
Plaintext
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 --cache-dir ./cache/pip -r /requirements/local.txt
|
|
|
|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
|
|
RUN sed -i 's/\r//' /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
COPY ./compose/django/start-dev.sh /start-dev.sh
|
|
RUN sed -i 's/\r//' /start-dev.sh
|
|
RUN chmod +x /start-dev.sh
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|