forked from instadeepai/Mava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.robocup
executable file
·54 lines (44 loc) · 1.5 KB
/
Dockerfile.robocup
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
FROM mava:latest
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
apt-utils \
build-essential \
curl \
xvfb \
ffmpeg \
xorg-dev \
libsdl2-dev \
swig \
cmake \
python-opengl
# RoboCup
ARG VERSION=16.0.0
# fetch repo / ppa packages, etc
RUN apt-get -y update --fix-missing
# Install package, that hangs the operation, separately
RUN DEBIAN_FRONTEND=noninteractive apt install -y tzdata
RUN apt update && \
apt -y install autoconf bison clang flex libboost-dev libboost-all-dev libc6-dev make wget
RUN apt -y install build-essential libboost-all-dev qt5-default libfontconfig1-dev libaudio-dev libxt-dev libglib2.0-dev libxi-dev libxrender-dev libboost-all-dev
RUN wget https://github.com/rcsoccersim/rcssserver/archive/rcssserver-$VERSION.tar.gz && \
tar xfz rcssserver-$VERSION.tar.gz && \
cd rcssserver-rcssserver-$VERSION && \
./bootstrap && \
./configure && \
make && \
make install && \
ldconfig
RUN wget https://github.com/rcsoccersim/rcssmonitor/archive/rcssmonitor-$VERSION.tar.gz && \
tar xfz rcssmonitor-$VERSION.tar.gz && \
cd rcssmonitor-rcssmonitor-$VERSION && \
./bootstrap && \
./configure && \
make && \
make install && \
ldconfig
RUN ldconfig && \
apt update && \
apt install -y libboost-filesystem1.65.1 libboost-system1.65.1 libboost-program-options-dev tmux
RUN apt-get install -y libqt5widgets5
# RUN pip install hydra-core
# ENV PYTHONPATH '/home'