Skip to content

Commit

Permalink
do not use libxml2 installed by conda
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaldo committed Sep 12, 2024
1 parent 02b644c commit 1a547f8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions terra-jupyter-r/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ RUN apt-get update \
# Add libsbml CFLAGS
ENV LIBSBML_CFLAGS="-I/usr/include"
ENV LIBSBML_LIBS="-lsbml"
ENV XML_CONFIG="/opt/conda/bin/xml2-config"
ENV XML_CONFIG="/usr/bin/xml2-config"
RUN echo 'export LIBSBML_CFLAGS="-I/usr/include"' >> /etc/profile \
&& echo 'export LIBSBML_LIBS="-lsbml"' >> /etc/profile \
&& echo 'export XML_CONFIG="/opt/conda/bin/xml2-config"' >> /etc/profile
&& echo 'export XML_CONFIG="/usr/bin/xml2-config"' >> /etc/profile

## set pip3 to run as root, not as jupyter user
ENV PIP_USER=false
Expand Down Expand Up @@ -158,8 +158,6 @@ RUN R -e 'install.packages("BiocManager")' \
# GCP essentials
"bigrquery", \
"googleCloudStorageR", \
# GenomicFeatures dependency
"rtracklayer", \
# User oriented packages
"reticulate", \
"remotes", \
Expand Down

0 comments on commit 1a547f8

Please sign in to comment.