-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
24 lines (19 loc) · 979 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
FROM python:3.7
# ---------------------------------------------------------------------------
# Install utilities
# ---------------------------------------------------------------------------
RUN apt install wget
RUN apt install git
RUN apt install gdown
# ---------------------------------------------------------------------------
# Get and install JAVA
# ---------------------------------------------------------------------------
RUN apt-get update && apt-get install -y default-jdk && apt-get autoclean -y
# ---------------------------------------------------------------------------
# Install requirements
# ---------------------------------------------------------------------------
COPY ./requirements.txt ./
RUN pip install -r requirements.txt
# ---------------------------------------------------------------------------
RUN export TF_CPP_MIN_LOG_LEVEL=3
RUN export AUTOGRAPH_VERBOSITY=0