EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ESA
PRISM
VS
Merge requests
!59
Single-file data updates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Single-file data updates
fusion
into
staging
Overview
0
Commits
7
Pipelines
0
Changes
8
Merged
Nikola Jankovic
requested to merge
fusion
into
staging
4 years ago
Overview
0
Commits
7
Pipelines
0
Changes
1
Expand
adding debug capabilities to registrar with optional DEBUG flag
implementing single-file scheme for registration of single files (i.e. fusion data)
updating helm ingress scheme to v1
updates in backend
Edited
4 years ago
by
Nikola Jankovic
0
0
Merge request reports
Compare
version 2
version 4
1cdfa1df
4 years ago
version 3
19d77ed2
4 years ago
version 2
d4f3ba69
4 years ago
version 1
fbcd674d
4 years ago
staging (base)
and
version 4
latest version
829482ba
7 commits,
4 years ago
version 4
1cdfa1df
6 commits,
4 years ago
version 3
19d77ed2
5 commits,
4 years ago
version 2
d4f3ba69
4 commits,
4 years ago
version 1
fbcd674d
2 commits,
4 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
core/Dockerfile
+
11
−
8
Options
@@ -25,22 +25,24 @@
# IN THE SOFTWARE.
#-----------------------------------------------------------------------------
FROM
eoxa/eoxserver:release-1.0.0-rc21
FROM
eoxa/eoxserver:release-1.0.0-rc25
ARG
DEBUG="false"
LABEL
name="prism view server core" \
vendor="EOX IT Services GmbH <https://eox.at>" \
license="MIT Copyright (C) 2019 EOX IT Services GmbH <https://eox.at>" \
type="prism view server core" \
version="1.2.0"
vendor="EOX IT Services GmbH <https://eox.at>" \
license="MIT Copyright (C) 2019 EOX IT Services GmbH <https://eox.at>" \
type="prism view server core" \
version="1.2.0"
USER
root
RUN
apt update
&&
\
apt
install
-y
\
libpq-dev wait-for-it
&&
\
apt autoremove
-y
&&
\
apt clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
apt autoremove
-y
&&
\
apt clean
&&
\
rm
-rf
/var/lib/apt/lists/
*
/tmp/
*
/var/tmp/
*
RUN
pip3
install
.
&&
\
pip3
install
python-keystoneclient python-swiftclient redis click setuptools jsonschema boto3
@@ -56,6 +58,7 @@ ENV INSTANCE_ID="prism-view-server_core" \
DB_HOST= \
DB_PORT= \
DB_NAME= \
DEBUG=${DEBUG} \
INSTALL_DIR="/var/www/pvs/dev/" \
DJANGO_USER= \
DJANGO_MAIL= \
Loading