Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
GeoModelDev
GeoModel
Commits
b624bbc9
Commit
b624bbc9
authored
4 years ago
by
Johannes Junggeburth
Browse files
Options
Downloads
Patches
Plain Diff
Setup the latest XercesC version by hand
parent
abd721de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!61
Docker file fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CI/DockerfileBase
+12
-0
12 additions, 0 deletions
CI/DockerfileBase
with
12 additions
and
0 deletions
CI/DockerfileBase
+
12
−
0
View file @
b624bbc9
...
...
@@ -6,6 +6,9 @@ FROM ubuntu:20.04
USER root
WORKDIR /root
ARG XercesC_VERSION=3.2.3
ENV DEBIAN_FRONTEND noninteractive
### Install tzdata package
...
...
@@ -29,6 +32,15 @@ RUN apt-get update && apt-get install -y sqlite3 libsqlite3-dev
### Install eigen to avoid the own installation
RUN apt-get update && apt-get install -y libeigen3-dev
### Another layer of building xer
RUN wget https://cern.ch/lcgpackages/tarFiles/sources/xerces-c-${XercesC_VERSION}.tar.gz && \
tar -xzf xerces-c-${XercesC_VERSION}.tar.gz && \
cd xerces-c-${XercesC_VERSION}.tar.gz && \
./confgiure --disable-static && \
make -j2 && \
make install
### Last but very important, the installation of the OpenGL module
RUN apt-get update && apt-get install -y mesa-utils build-essential libgl1-mesa-dev
...
...
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