first init

This commit is contained in:
2025-06-04 11:27:24 +02:00
parent 2c12236a61
commit 565ea066b9
3 changed files with 33 additions and 0 deletions

6
dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["python", "app.py"]