-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
32 lines (26 loc) · 947 Bytes
/
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
FROM ucsdets/datascience-notebook:2020.2-stable
USER root
# Install python3, pip3
RUN apt-get update --fix-missing && \
apt-get install -y git \
build-essential \
cmake \
vim \
wget \
unzip \
ffmpeg
# Upgrade pip
RUN pip install --upgrade pip
RUN pip install --no-cache-dir numpy \
scipy \
pandas \
pyyaml \
notebook \
matplotlib \
seaborn \
scikit-image \
scikit-learn \
Pillow \
python-math \
opencv-python \
ffmpeg-python \