Skip to content

Instantly share code, notes, and snippets.

@harish0201
Created September 28, 2021 09:39
Show Gist options
  • Save harish0201/05676f257e1dda1d775c576b23e5a35f to your computer and use it in GitHub Desktop.
Save harish0201/05676f257e1dda1d775c576b23e5a35f to your computer and use it in GitHub Desktop.
Alpinelinux based clusterProfiler installation
FROM rhub/r-minimal
RUN installr -d -a "curl-dev gfortran libjpeg-turbo-dev libpng-dev libpng libjpeg-turbo" ggplot2 cowplot clusterProfiler org.Hs.eg.db org.Mm.eg.db org.Cf.eg.db org.Sc.sgd.db
&& apk del --no-cache
WORKDIR /data
RUN mkdir -p /data/in /data/out
COPY ClusterProfiler_Enrichment.R /data/
ENV PATH=$PATH:/data/:/usr/bin:/bin
ENTRYPOINT [ "Rscript", "/data/ClusterProfiler_Enrichment.R"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment