-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
29 lines (24 loc) · 836 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
# Initialize OS:
FROM debian:bullseye-20200803-slim
# Labels:
LABEL maintainer="DataSpott"
# Update OS:
RUN apt-get update \
&& apt-get install -y --no-install-recommends software-properties-common \
&& apt-get -y install python3-pip \
&& apt-get -y install git \
&& rm -rf /var/lib/apt/lists/*
# Install python-modules:
RUN pip3 install install pandas==1.1.2 \
&& pip3 install altair==4.1.0 \
&& pip3 install xlrd==1.2.0 \
&& pip3 install scipy==1.5.2 \
&& pip3 install tabulate==0.8.7 \
&& pip3 install IPython==7.18.1 \
&& pip3 install tqdm==4.48.2 \
&& pip3 install widgetsnbextension==3.5.1 \
&& pip3 install webencodings==0.5.1 \
&& mkdir /input
# Copy the SGT_Analyser-directory:
RUN git clone https://github.com/DataSpott/sgt_analysis.git
ENV PATH "$PATH:/sgt_analysis"