Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
focusProject
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
VirtualObservatory
focusProject
Merge requests
!3
Submodule dachs
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
Submodule dachs
remote-gavo-entry
into
draft_v01
Overview
0
Commits
7
Pipelines
8
Changes
6
Merged
Fanna Lautenbach
requested to merge
remote-gavo-entry
into
draft_v01
2 years ago
Overview
0
Commits
7
Pipelines
8
Changes
6
Expand
0
0
Merge request reports
Compare
draft_v01
version 6
d5a20fa9
2 years ago
version 5
bb7ef080
2 years ago
version 4
160881ad
2 years ago
version 3
c33668b4
2 years ago
version 2
45a61d9c
2 years ago
version 1
b304fad9
2 years ago
draft_v01 (base)
and
latest version
latest version
fa0e555b
7 commits,
2 years ago
version 6
d5a20fa9
6 commits,
2 years ago
version 5
bb7ef080
5 commits,
2 years ago
version 4
160881ad
4 commits,
2 years ago
version 3
c33668b4
3 commits,
2 years ago
version 2
45a61d9c
2 commits,
2 years ago
version 1
b304fad9
1 commit,
2 years ago
6 files
+
9
−
75
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
test/gavo-docker/Dockerfile deleted
100644 → 0
+
0
−
50
Options
FROM
debian:stable
RUN
apt update
\
&& apt-get install -y python3-twisted --no-install-recommends \
postgresql-client \
python3-pyparsing \
python3-astropy \
python3-lxml \
python3-psycopg2 \
python3-matplotlib \
python3-setuptools \
python3-docutils \
python3-pillow \
python3-sqlalchemy \
python3-graphviz \
python3-pip \
python3-yaml \
libaio1 \
firefox-esr \
subversion \
subversion \
unzip \
wget \
&& rm -rf /var/lib/apt/lists/*
RUN
pip
install
cx_oracle
&&
\
mkdir
/opt/oracle
&&
\
cd
/opt/oracle
&&
\
wget https://download.oracle.com/otn_software/linux/instantclient/219000/instantclient-basiclite-linux.x64-21.9.0.0.0dbru.zip
&&
\
unzip instantclient-basiclite-linux.x64-21.9.0.0.0dbru.zip
&&
\
echo
$PWD
/instantclient_21_9
>
/etc/ld.so.conf.d/oracle.conf
&&
\
ldconfig
&&
\
rm
instantclient-basiclite-linux.x64-21.9.0.0.0dbru.zip
RUN
svn co http://svn.ari.uni-heidelberg.de/svn/gavo/python/tags/release-2.6.4/ /src/dachs
\
&&
cd
/src/dachs
\
&&
python3 setup.py
install
RUN
adduser
--system
gavo
\
&&
addgroup
--system
gavo
\
&&
adduser gavo gavo
\
&&
adduser
`
id
-nu
`
gavo
\
&&
mkdir
-p
/var/gavo/etc
\
&& echo "host=pg-dachs\nuser=gavo\npassword=gavo\ndatabase=gavo\nport=5432" > /var/gavo/etc/dsn \
&& mkdir -p /var/gavo/logs /var/gavo/inputs \
&& chown gavo:gavo /var/gavo/logs
RUN
echo
"[ivoa]
\n
authority=ASTRON"
>>
/etc/gavo.rc
ADD
./entrypoint.sh /entrypoint.sh
RUN
chmod
+x /entrypoint.sh
ENTRYPOINT
[ "/entrypoint.sh" ]
Loading