The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

122 lines
3.3 KiB

4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
4 weeks ago
  1. FROM movesrwth/storm-basesystem:ubuntu-22.04 as build
  2. #COPY ./tempest-devel /opt/tempest
  3. #COPY ./tempest-py /opt/tempestpy
  4. COPY ./pycarl-2.0.4 /opt/pycarl
  5. #COPY ./carl /opt/carl
  6. # RUN rm -r /opt/tempest/.git
  7. # RUN rm -r /opt/tempestpy/.git
  8. # RUN rm -r /opt/Minigrid2PRISM/.git
  9. RUN apt-get update
  10. RUN apt-get install -y python3.10
  11. # Specify number of threads to use for parallel compilation
  12. # This number can be set from the commandline with:
  13. # --build-arg no_threads=<value>
  14. ARG no_threads=6
  15. # Build carl
  16. RUN git clone -b c++14-22.01 https://github.com/ths-rwth/carl.git /opt/carl
  17. RUN mkdir -p /opt/carl/build
  18. WORKDIR /opt/carl/build
  19. RUN cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_CLN_NUMBERS=ON -DUSE_GINAC=ON
  20. RUN make lib_carl -j $no_threads
  21. # Build tempest
  22. RUN git clone -b tempestpy_adaptions https://git.pranger.xyz/sp/tempest.git /opt/tempest
  23. RUN mkdir -p /opt/tempest/build
  24. WORKDIR /opt/tempest/build
  25. RUN cmake .. -DCMAKE_BUILD_TYPE=Release -DSTORM_DEVELOPER=OFF -DSTORM_LOG_DISABLE_DEBUG=ON -DSTORM_PORTABLE=OFF -DSTORM_USE_SPOT_SHIPPED=ON
  26. RUN make resources storm binaries -j $no_threads
  27. RUN apt-get install -y maven
  28. RUN apt-get install -y uuid-dev
  29. # COPY ./carl-parser /opt/carl-parser
  30. # # Switch to build directory
  31. # RUN mkdir -p /opt/carl-parser/build
  32. # WORKDIR /opt/carl-parser/build
  33. # Configure carl-parser
  34. RUN cmake .. -DCMAKE_BUILD_TYPE=$build_type
  35. # Build carl-parser
  36. # RUN make carl-parser -j $no_threads
  37. # Manage python packages
  38. WORKDIR /opt/
  39. RUN apt-get install -y python3-venv
  40. # Python env handling
  41. ENV VIRTUAL_ENV=/opt/venv
  42. RUN python3 -m venv $VIRTUAL_ENV
  43. ENV PATH="$VIRTUAL_ENV/bin:$PATH"
  44. RUN apt-get install -y python3-pip
  45. # build pycarl
  46. WORKDIR /opt/pycarl
  47. RUN python setup.py build_ext -j $no_threads
  48. RUN pip install .
  49. # build tempestpy
  50. RUN git clone -b refactoring https://git.pranger.xyz/sp/tempestpy.git /opt/tempestpy
  51. WORKDIR /opt/tempestpy
  52. RUN python3 setup.py build_ext --storm-dir /opt/tempest/ -j $no_threads develop
  53. # build yaml-cpp
  54. COPY ./yaml-cpp /opt/yaml-cpp
  55. RUN mkdir -p /opt/yaml-cpp/build
  56. WORKDIR /opt/yaml-cpp/build
  57. RUN cmake .. -DCMAKE_BUILD_TYPE=Release
  58. RUN make -j $no_threads
  59. RUN make install -j $no_threads
  60. COPY ./Minigrid2PRISM /opt/Minigrid2PRISM
  61. # build minigrid to prism
  62. RUN mkdir -p /opt/Minigrid2PRISM/build
  63. WORKDIR /opt/Minigrid2PRISM/build
  64. RUN cmake ..
  65. RUN make -j $no_threads
  66. # build minigrid
  67. #COPY ./Minigrid /opt/Minigrid
  68. #RUN rm -r /opt/Minigrid/.git
  69. #WORKDIR /opt/Minigrid
  70. #RUN pip install .
  71. RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
  72. WORKDIR /opt/tempestpy
  73. RUN pip install -U "ray[all]==2.6.3"
  74. RUN pip install dm-tree
  75. RUN pip install opencv-python
  76. RUN pip install scikit-image
  77. RUN pip install torch
  78. RUN pip install tensorboard
  79. RUN pip install tensorboardX
  80. RUN pip install gymnasium
  81. RUN pip install tensorflow
  82. RUN pip install jupyterlab
  83. RUN pip install astar
  84. RUN pip install ipywidgets
  85. RUN pip install numpy
  86. RUN pip install matplotlib
  87. RUN pip install sb3-contrib
  88. RUN pip install opencv-python
  89. RUN pip install moviepy
  90. ENV M2P_BINARY=/opt/Minigrid2PRISM/build/main
  91. # We mount the Minigrid directory here manually again, to be able to have the directory hosted in the jupyter notebook
  92. CMD ["pip", "install", "-e", "/opt/Minigrid"]
  93. ENTRYPOINT ["jupyter", "lab","--ip=0.0.0.0","--allow-root", "--notebook-dir=/opt/notebooks"]