Add the workspace jar file.

This commit is contained in:
Andrea Dell'Amico 2024-04-17 19:37:39 +02:00
parent 720381f977
commit f11a4028c2
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 13 additions and 0 deletions

View File

@ -14,6 +14,19 @@ RUN pip3 install \
mbtr \
pandas
ENV DEBIAN_FRONTEND noninteractive
# Upgrade, install some R dependencies and base python3
# Add libcurl4-gnutls-dev and remove libcurl4-openssl-dev because
#
# libraptor2-dev : Depends: libcurl4-gnutls-dev but it is not installable
RUN apt-get update --yes && \
apt-get install --yes --no-install-recommends \
libglpk
RUN mkdir -p /opt/workspace-lib
RUN mkdir /var/log/workspace-lib
ADD https://maven.d4science.org/nexus/content/repositories/gcube-snapshots/org/gcube/data-access/sh-fuse-integration/2.0.0-SNAPSHOT/sh-fuse-integration-2.0.0-20211005.090627-1-jar-with-dependencies.jar /opt/workspace-lib/fuse-workspace.jar
# Rstudio settings
COPY rsession.conf /etc/rstudio/rsession.conf
RUN chmod 0644 /etc/rstudio/rsession.conf