EOX GitLab Instance

Skip to content
Snippets Groups Projects

Single-file data updates

Merged Nikola Jankovic requested to merge fusion into staging
+ 11
8
@@ -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