Skip to content

Commit fe283cd

Browse files
authored
Merge pull request #56 from synaptic-axon/docker
Adding Dockerfile to build MultiNEAT under Ubuntu 18.10 consistently.
2 parents d834574 + 0c3e21f commit fe283cd

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM ubuntu:18.10
2+
3+
ENV DEBIAN_FRONTEND noninteractive
4+
5+
RUN apt-get update && apt-get install -y git cmake libboost-all-dev
6+
RUN apt-get update && apt-get install -y python-setuptools python-psutil python-numpy python-concurrent.futures python-opencv
7+
RUN cd /opt && git clone https://github.com/peter-ch/MultiNEAT.git
8+
RUN cd /opt/MultiNEAT && export MN_BUILD=boost && cmake . && python setup.py build_ext && python setup.py install
9+
10+
11+

0 commit comments

Comments
 (0)