forked from google-deepmind/open_spiel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
37 lines (31 loc) · 788 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
35
36
37
FROM ubuntu:18.04
RUN apt update
RUN dpkg --add-architecture i386 && apt update
RUN apt-get -y install \
clang \
curl \
git \
python3 \
python3-dev \
python3-pip \
python3-setuptools \
python3-wheel \
sudo
RUN sudo pip3 install --upgrade pip
RUN sudo pip3 install matplotlib
# install
COPY . .
RUN ./install.sh
RUN pip3 install --upgrade setuptools testresources
RUN pip3 install --upgrade -r requirements.txt
RUN pip3 install --upgrade cmake
# build and test
RUN mkdir -p build && \
cd build && \
cmake -DPython_TARGET_VERSION=${PYVERSION} -DCMAKE_CXX_COMPILER=`which clang++` ../open_spiel && \
make -j4 && \
ctest -j4
COPY . build
ENV PYTHONPATH=${PYTHONPATH}:/
ENV PYTHONPATH=${PYTHONPATH}:/build/python
WORKDIR ./open_spiel