From c3f08612556cb7ea7b8a031f0d74edb1c7f41ee0 Mon Sep 17 00:00:00 2001 From: Welton Moura Date: Sat, 26 Apr 2025 17:24:25 -0300 Subject: [PATCH] Docker: pull file repository github --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) 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