Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GRO - Plan
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eRA public
GRO - Plan
Merge requests
!4
Feature/shibboleth
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/shibboleth
feature/shibboleth
into
develop
Overview
0
Commits
3
Pipelines
1
Changes
3
Merged
Ubbo Veentjer
requested to merge
feature/shibboleth
into
develop
4 years ago
Overview
0
Commits
3
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
164d6c30
3 commits,
4 years ago
3 files
+
47
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
compose/django/Dockerfile.production
+
4
−
2
Options
@@ -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