-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (31 loc) · 971 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
33
34
FROM pytorch/pytorch:2.1.2-cuda12.1-cudnn8-runtime
## ensure locale is set during build
ENV LANG C.UTF-8
ARG DEBIAN_FRONTEND=noninteractive
RUN python -m pip install --upgrade pip
RUN pip3 install argparse && \
pip3 install nodejs && \
pip3 install uproot && \
pip3 install jupyter && \
pip3 install jupyterhub && \
pip3 install jupyterlab && \
pip3 install matplotlib && \
pip3 install seaborn && \
pip3 install hep_ml && \
pip3 install sklearn && \
pip3 install scipy && \
pip3 install tables && \
pip3 install "dask[complete]" && \
pip3 install pydot && \
pip3 install pyparser && \
pip3 install pyparsing && \
pip3 install pytest && \
pip3 install pandas && \
pip3 install h5py && \
pip3 install numpy && \
pip3 install torch && \
pip3 install pyro-ppl && \
pip3 install vector && \
pip3 install awkward && \
pip3 install batchup && \
pip3 install slot_attention \