-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (33 loc) · 766 Bytes
/
Dockerfile
File metadata and controls
39 lines (33 loc) · 766 Bytes
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
# Image Args
ARG UBUNTU_VER
FROM ubuntu:${UBUNTU_VER}
LABEL maintainer="Edgar Y. Walker <eywalker@uw.edu>, Daniel Sitonic <sitonic@uw.edu>"
# Deal with pesky Python 3 encoding issue
ENV LANG C.UTF-8
# Prevent Debian/Ubuntu from asking questions
ENV DEBIAN_FRONTEND noninteractive
# Install essential Ubuntu packages
# and upgrade pip
RUN apt-get update && \
apt-get install -y build-essential && \
apt-get install -y software-properties-common \
git \
wget \
vim \
curl \
zip \
unzip \
fish \
python3-pip && \
apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pip3 install \
numpy \
scipy \
scikit-learn \
pandas \
matplotlib \
seaborn \
"jax[cpu]" \
numpyro \
pymc
WORKDIR /src