-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dockerfile
31 lines (27 loc) · 1.05 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
FROM python:3.7-stretch
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64/
RUN export JAVA_HOME && \
apt-get update && \
apt-get install -y openjdk-8-jdk && \
apt-get install -y ant && \
apt-get clean UU && \
apt-get update && \
apt-get install ca-certificates-java && \
apt-get clean && \
update-ca-certificates -f && \
pip3 install six python-dateutil numpy pytz pandas pyarrow \
kiwisolver cycler pyparsing matplotlib sqlalchemy \
xlsxwriter mock numexpr tables xlrd decorator \
ipython-genutils traitlets jupyter-core attrs \
pyrsistent jsonschema nbformat chardet certifi urllib3 \
idna requests h5py cmapPy distro tabula-py
COPY Tests/InputData /Tests/InputData
COPY Tests/OutputData /Tests/OutputData
COPY VERSION /ExpressionAble/
COPY MANIFEST.in /ExpressionAble/
COPY README.md /ExpressionAble/
COPY setup.py /ExpressionAble/
COPY RunTests*.sh /
COPY *.py /
COPY expressionable /ExpressionAble/expressionable
RUN pip3 install -e ExpressionAble