Init Commit: Moved bproto to seperate repo

This commit is contained in:
AlexanderHD27
2025-04-14 14:43:03 +02:00
commit 45bfc724fc
125 changed files with 10822 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM python:alpine3.21
WORKDIR /compiler
ADD src /compiler/src
ADD template /compiler/template
ADD requirements.txt .
RUN pip install -r requirements.txt
RUN addgroup --g 1000 groupcontainer
RUN adduser -u 1000 -G groupcontainer -h /home/containeruser -D containeruser
USER containeruser
WORKDIR /compiler/data
WORKDIR /compiler
ENTRYPOINT [ "python3" ]