0.3.0: initial commit + Dockerfile + rewrite

This commit is contained in:
Yusur 2025-06-13 03:01:32 +02:00
commit e679de5991
77 changed files with 4147 additions and 0 deletions

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
FROM python:3.13-slim
WORKDIR /usr/src/app
RUN pip install -U pip setuptools
COPY pyproject.toml docker-run.sh .
COPY .env.prod .env
COPY freak freak
RUN pip install -e .
VOLUME ["/opt/live-app"]
EXPOSE 5000
CMD ["/usr/bin/bash", "docker-run.sh"]