Dockerfile: add missing CMD
This commit is contained in:
parent
43c1c94844
commit
d39cfd9b42
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue