Dockerfile: add missing CMD

master
informatic 2019-05-12 15:58:19 +02:00
parent 43c1c94844
commit d39cfd9b42
1 changed files with 3 additions and 2 deletions

View File

@ -2,9 +2,10 @@ FROM python:3.5
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
RUN apt-get -y update
RUN apt-get -y install libsasl2-dev libldap2-dev libssl-dev
ADD requirements.txt /code/
RUN pip install --no-cache-dir -r requirements.txt
RUN wget https://github.com/vishnubob/wait-for-it/raw/8ed92e8cab83cfed76ff012ed4a36cef74b28096/wait-for-it.sh -O /usr/local/bin/wait-for-it && chmod +x /usr/local/bin/wait-for-it
ADD . /code/
RUN python manage.py collectstatic
CMD bash -c "python manage.py migrate && python manage.py runserver 0.0.0.0:8000"