Initial release
Build and Push Docker Image / build (push) Successful in 32s

This commit is contained in:
Stardream
2026-05-20 03:15:11 +10:00
commit 326101958a
20 changed files with 9500 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PORT=8080 \
DATA_DIR=/app/data
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir -p /app/data
EXPOSE 8080
CMD ["python", "server.py"]