add simple input form

This commit is contained in:
null
2024-02-17 11:19:10 +01:00
parent 17b3c46960
commit 8d4c29451e
5 changed files with 195 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:latest
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./app.py" ]