Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pandaninjas committed Jun 20, 2023
0 parents commit 9965508
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM pimachinelearning/raspi-python:3.9.16

# cmake from pip is kinda cursed, but pip does have the latest version
RUN python3.9 -m pip install cmake

RUN wget https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-16.0.5.tar.gz && tar -zxf llvmorg-16.0.5.tar.gz && cd llvm-project-llvmorg-16.0.5 && mkdir build && cd build && cmake -DLLVM_ENABLE_PROJECTS=clang -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ../llvm && make -j$(nproc) && make install

CMD ["/bin/bash"]

0 comments on commit 9965508

Please sign in to comment.