File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,14 @@ WORKDIR /software/flowdock
2323RUN git clone https://github.com/BioinfoMachineLearning/FlowDock /software/flowdock
2424
2525# # Create conda environment
26- RUN conda env create -f environments/flowdock_environment.yaml
26+ # RUN conda env create -f environments/flowdock_environment.yaml
27+ COPY environments/flowdock_environment_docker.yaml /software/flowdock/environments/flowdock_environment_docker.yaml
28+ RUN conda env create -f environments/flowdock_environment_docker.yaml
2729
2830# # Automatically activate conda environment
29- RUN echo "source activate FlowDock " >> /etc/profile.d/conda.sh && \
31+ RUN echo "source activate flowdock " >> /etc/profile.d/conda.sh && \
3032 echo "source /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
31- echo "conda activate FlowDock " >> ~/.bashrc
33+ echo "conda activate flowdock " >> ~/.bashrc
3234
3335
3436# conda activate FlowDock # NOTE: one still needs to use `conda` to (de)activate environments
You can’t perform that action at this time.
0 commit comments