Fix the fuse-workspace.jar file permissions.

This commit is contained in:
Andrea Dell'Amico 2024-04-19 12:02:50 +02:00
parent 1bf2f8f7f5
commit c9180b0d57
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ LABEL org.d4science.image.licenses="EUPL-1.2" \
# R and python3 packages required by wb3 ecosystem https://support.d4science.org/issues/26459
COPY wb3-install2r-packages.txt /rocker_scripts
RUN for f in `cat //rocker_scripts/wb3-install2r-packages.txt` ; do install2.r --error --skipinstalled --ncpus -1 $f || exit 1 ; done
RUN for f in `cat /rocker_scripts/wb3-install2r-packages.txt` ; do install2.r --error --skipinstalled --ncpus -1 $f || exit 1 ; done
RUN pip3 install \
numpy \
@ -26,6 +26,7 @@ RUN apt-get update --yes && \
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
RUN chmod 0644 /opt/workspace-lib/fuse-workspace.jar
# Rstudio settings
COPY rsession.conf /etc/rstudio/rsession.conf