Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Metadata simplify #39

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04 as builder
FROM ubuntu:20.04 AS builder

RUN apt-get update \
&& apt-get upgrade -y \
Expand All @@ -14,7 +14,7 @@ RUN wget "https://repo.anaconda.com/miniconda/Miniconda3-py38_23.5.2-0-Linux-x86
/bin/bash miniconda.sh -b -p /opt/conda/ && \
rm miniconda.sh

ENV PATH /opt/conda/bin:$PATH
ENV PATH=/opt/conda/bin:$PATH

RUN conda update -n base -c defaults conda -y && \
conda install \
Expand All @@ -39,7 +39,7 @@ RUN conda install \
pandoc -y \
&& conda clean --all -y

ENV R_LIBS_SITE $R_LIBS_SITE:/usr/local/lib/R/site-library:/usr/lib/R/site-library:/usr/lib/R/library:/opt/conda/lib/R/library/
ENV R_LIBS_SITE=/usr/local/lib/R/site-library:/usr/lib/R/site-library:/usr/lib/R/library:/opt/conda/lib/R/library/

COPY scripts /opt/tsne/scripts
COPY itsne /opt/tsne/itsne
Expand Down
Loading