-
Notifications
You must be signed in to change notification settings - Fork 20
/
Dockerfile
40 lines (32 loc) · 1.63 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM ubuntu:16.04
MAINTAINER Sam Murphy <samsammurphy@gmail.com>
RUN apt-get update && \
\
apt-get install -y --no-install-recommends \
bzip2 \
build-essential \
git \
libssl-dev \
libffi-dev \
python3 \
python3-dev \
python3-pip \
wget \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
/bin/bash /Miniconda3-latest-Linux-x86_64.sh -b -p /miniconda && \
rm Miniconda3-latest-Linux-x86_64.sh
ENV PATH=/miniconda/bin:${PATH}
RUN conda update -y conda && \
conda config --add channels conda-forge && \
conda install -y \
py6s \
pandas \
jupyter
RUN conda install -c anaconda pip && \
pip install \
earthengine-api \
openpyxl \
oauth2client