Added Dockerfile and instructions for using Colibrì through a docker container

This commit is contained in:
Davide Quack
2026-07-19 16:49:29 +02:00
parent 72874f38a2
commit 27b4c4263a
3 changed files with 957 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM debian:stable-slim
# We install the necessary packages to download and compile the code
RUN apt-get update && \
apt-get install -y locales git build-essential python3 python3-pip && \
rm -rf /var/lib/apt/lists/* && \
mkdir /app
# Let's clone the repository
WORKDIR /app
RUN git clone https://github.com/JustVugg/colibri.git .
WORKDIR /app/c
# It's time to compile
RUN ./setup.sh && ./coli build