We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53b370b commit c49a098Copy full SHA for c49a098
Dockerfile
@@ -1,6 +1,9 @@
1
-FROM continuumio/miniconda3:4.7.10
+FROM continuumio/miniconda3:4.10.3
2
ARG DOCKER_TAG
3
+RUN apt-get update && \
4
+ apt-get install -y --no-install-recommends netbase
5
RUN conda install -c conda-forge git-annex \
6
&& sync && conda clean --all && sync
-RUN pip install "datalad${DOCKER_TAG+==$DOCKER_TAG}" \
- && rm -rf ~/.cache/pip/* && sync
7
+RUN pip install "datalad${DOCKER_TAG+==$DOCKER_TAG}" && \
8
+ pip install datalad-osf && \
9
+ rm -rf ~/.cache/pip/* && sync
0 commit comments