From d39cfd9b428a4ab53a714ef17630baa85d7ff7f8 Mon Sep 17 00:00:00 2001 From: Piotr Dobrowolski Date: Sun, 12 May 2019 15:58:19 +0200 Subject: [PATCH] Dockerfile: add missing CMD --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87fb994..190c716 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"