backend: initi backend

This commit is contained in:
tylen
2025-09-09 00:37:15 +03:00
parent fb26267244
commit 9a330f3743
7 changed files with 121 additions and 0 deletions

10
backend/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.13-slim-bookworm
ENV PYTHONPATH=/usr/local/lib
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
CMD ["/bin/sh", "entrypoint.sh"]