Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
clarin-dspace
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
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
commul
docker
clarin-dspace
Commits
9083d072
Commit
9083d072
authored
5 years ago
by
egon w. stemle
Browse files
Options
Downloads
Patches
Plain Diff
Minor clean-ups
parent
04077182
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dockerfiles/Dockerfile.dspace
+7
-3
7 additions, 3 deletions
dockerfiles/Dockerfile.dspace
with
7 additions
and
3 deletions
dockerfiles/Dockerfile.dspace
+
7
−
3
View file @
9083d072
...
@@ -16,16 +16,20 @@ LABEL maintainer="Alexander König <Alexander.Koenig@eurac.edu>" \
...
@@ -16,16 +16,20 @@ LABEL maintainer="Alexander König <Alexander.Koenig@eurac.edu>" \
maintainer="Egon W. Stemle <egon.stemle@eurac.edu>" \
maintainer="Egon W. Stemle <egon.stemle@eurac.edu>" \
org.label-schema.vcs-url=$LABEL_VCS_URL
org.label-schema.vcs-url=$LABEL_VCS_URL
#
ENV DEBIAN_FRONTEND=noninteractive
# Set "APT::Get::{Assume-Yes, Fix-Broken} to true"
# Set "APT::Get::{Assume-Yes, Fix-Broken} to true"
RUN echo 'APT { GET { Assume-Yes "true"; }; };\nAPT { GET { Fix-Broken "true"; }; };' \
RUN echo 'APT { GET { Assume-Yes "true"; }; };' \
>> /etc/apt/apt.conf
>> /etc/apt/apt.conf && \
echo 'APT { GET { Fix-Broken "true"; }; };' \
>> /etc/apt/apt.conf
# use fast(er) local mirrors
# use fast(er) local mirrors
# http://layer0.authentise.com/docker-4-useful-tips-you-may-not-know-about.html
# http://layer0.authentise.com/docker-4-useful-tips-you-may-not-know-about.html
RUN echo "deb mirror://mirrors.ubuntu.com/mirrors.txt xenial main restricted universe multiverse" > /etc/apt/sources.list && \
RUN echo "deb mirror://mirrors.ubuntu.com/mirrors.txt xenial main restricted universe multiverse" > /etc/apt/sources.list && \
echo "deb mirror://mirrors.ubuntu.com/mirrors.txt xenial-updates main restricted universe multiverse" >> /etc/apt/sources.list && \
echo "deb mirror://mirrors.ubuntu.com/mirrors.txt xenial-updates main restricted universe multiverse" >> /etc/apt/sources.list && \
echo "deb mirror://mirrors.ubuntu.com/mirrors.txt xenial-security main restricted universe multiverse" >> /etc/apt/sources.list && \
echo "deb mirror://mirrors.ubuntu.com/mirrors.txt xenial-security main restricted universe multiverse" >> /etc/apt/sources.list && \
DEBIAN_FRONTEND=noninteractive
apt-get update && \
apt-get update && \
apt-get upgrade --show-progress
apt-get upgrade --show-progress
# install cpanm and dependencies
# install cpanm and dependencies
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment