Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Sep 1, 2021
1 parent cc00b82 commit 5ea5d5d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
# Use Ubuntu 20.04 LTS
FROM ubuntu:focal-20210416

ENV DEBIAN_FRONTEND="noninteractive" \
LANG="C.UTF-8" \
ENV LANG="C.UTF-8" \
LC_ALL="C.UTF-8"

# Prepare environment
Expand All @@ -33,9 +32,12 @@ RUN apt-get update && \
apt-utils \
ca-certificates \
curl \
netbase && \
netbase \
vim && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

ENV EDITOR=/usr/bin/vim

# Installing and setting up miniconda
RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh && \
bash Miniconda3-py38_4.10.3-Linux-x86_64.sh -b -p /opt/miniconda && \
Expand All @@ -56,3 +58,4 @@ RUN conda install -y -c conda-forge -c anaconda \
rm -rf ~/.conda ~/.cache/pip/*; sync

RUN pip install datalad-osf

0 comments on commit 5ea5d5d

Please sign in to comment.