diff --git a/Dockerfile b/Dockerfile index 0d2eb8f..0bc5946 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,15 +6,16 @@ WORKDIR /root RUN python3 -m ensurepip RUN pip3 install -U pip --no-cache-dir +COPY app/requirements.txt . +RUN pip3 install -r requirements.txt --no-cache-dir + COPY app /opt/polyphonic WORKDIR /opt/polyphonic COPY docker_settings.py polyphonic/local_settings.py -RUN pip3 install -r requirements.txt --no-cache-dir - RUN mkdir /var/polyphonic RUN SECRET_KEY=_ python3 manage.py collectstatic --noinput ENTRYPOINT ["python3", "manage.py"] -CMD ["runserver", "0.0.0.0:8000", "--insecure"] \ No newline at end of file +CMD ["runserver", "0.0.0.0:8000", "--insecure"] diff --git a/app/interface/templates/interface/project_base.html b/app/interface/templates/interface/project_base.html index 4ee91af..3e23e43 100644 --- a/app/interface/templates/interface/project_base.html +++ b/app/interface/templates/interface/project_base.html @@ -43,7 +43,7 @@