Skip to content
Snippets Groups Projects

Feature/shibboleth

Merged Ubbo Veentjer requested to merge feature/shibboleth into develop
3 files
+ 47
2
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -22,10 +22,11 @@ WORKDIR /app
# install rdmo and gunicorn
RUN apt-get update && apt-get install -y --no-install-recommends \
python3-pip python3-dev python3-setuptools gcc python3-wheel \
python3-pip python3-dev python3-setuptools gcc python3-wheel git \
&& pip3 install rdmo \
&& pip3 install gunicorn \
&& apt-get remove -y python3-pip python3-dev python3-setuptools gcc python3-wheel \
&& pip3 install -r requirements/shibboleth.txt \
&& apt-get remove -y python3-pip python3-dev python3-setuptools gcc python3-wheel git\
&& apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists/*
@@ -33,6 +34,7 @@ COPY ./theme /app/theme
COPY ./locale /app/locale
COPY ./config/production.py /app/config/settings/local.py
COPY ./config/middleware.py /app/config/middleware.py
# download vendor files
ENV DJANGO_SECRET_KEY=NOT_SO_SECRET_TEMP_KEY
Loading