add launch script and docker files

This commit is contained in:
Jean-Luc Agathos
2025-07-02 15:58:35 +02:00
parent 0f5d751056
commit df13c82878
3 changed files with 27 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.9.23-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "run.py", "--host", "0.0.0.0", "--port", "8000"]