feat: initial commit

This commit is contained in:
nikola
2026-05-19 14:53:37 +02:00
commit c6e7ac92ae
11 changed files with 660 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.12-alpine
WORKDIR /app
RUN pip install --no-cache-dir segno==1.6.6
COPY app.py /app/app.py
EXPOSE 8081
CMD ["python", "/app/app.py"]