2019-02-28 13:09:53 +00:00
|
|
|
# pull official base image
|
|
|
|
FROM python:3.7.2
|
|
|
|
|
|
|
|
# set environment varibles
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
|
|
|
# set work directory
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
# install dependencies
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
RUN pip install pipenv
|
|
|
|
COPY ./Pipfile /usr/src/app/Pipfile
|
|
|
|
RUN pipenv install --skip-lock --system --dev
|
|
|
|
|
|
|
|
# copy project
|
|
|
|
COPY . /usr/src/app/
|
|
|
|
|
2019-06-19 15:59:35 +00:00
|
|
|
# add wait for it
|
|
|
|
RUN git clone https://github.com/vishnubob/wait-for-it.git /wait-for-it
|
|
|
|
RUN chmod a+x /wait-for-it/wait-for-it.sh
|
2019-02-28 13:09:53 +00:00
|
|
|
|
2019-06-19 15:59:35 +00:00
|
|
|
# add entry point
|
2019-09-06 10:34:32 +00:00
|
|
|
COPY ./django-entrypoint.sh /django-entrypoint.sh
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|