diff --git a/Dockerfile b/Dockerfile index 51687cb..917668f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM python:3 +RUN git clone https://github.com/welton89/RRBEC.git +RUN cd RRBEC + WORKDIR /app COPY requirements.txt ./ @@ -8,6 +11,7 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . RUN python gestaoRaul/manage.py collectstatic --noinput + # RUN python gestaoRaul/manage.py migrate --noinput WORKDIR /app/gestaoRaul