-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
36 lines (24 loc) · 1013 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
from ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update && apt -y install \
gcc git \
wget vim curl \
python3-pip cmake automake \
build-essential \
apt-utils flex bison mona
# installing spot using apt
RUN wget -q -O - https://www.lrde.epita.fr/repo/debian.gpg | apt-key add -
SHELL ["/bin/bash", "-c"]
RUN pip3 install pyyaml numpy bidict networkx graphviz ply pybullet \
pyperplan==1.3 IPython svgwrite matplotlib imageio lark-parser==0.9.0 sympy==1.6.1 \
cloudpickle cycler future mpmath pandas pydot pydot3 pyglet pytz scipy \
gym==0.21.0 gym_minigrid==1.0.2 joblib tqdm shapely paramiko
RUN echo 'deb http://www.lrde.epita.fr/repo/debian/ stable/' >> /etc/apt/sources.list
RUN apt-get -y update && apt -y install spot \
libspot-dev \
spot-doc
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
ADD ./ /root/regret_planning
RUN cd /root/regret_planning/src/LTLf2DFA && pip3 install .
WORKDIR /root/regret_planning
ENTRYPOINT "/bin/bash"