Initial Commit

This commit is contained in:
2025-12-31 20:06:55 -08:00
commit 878de447ae
6 changed files with 197 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM docker
WORKDIR /
COPY composer /composer
COPY stack /stack
RUN apk update
RUN apk add --no-cache git python3 py3-pip
RUN pip3 install -r composer/requirements.txt
ENTRYPOINT ['python3', 'composer/entrypoint.py']