Initial commit

This commit is contained in:
2024-02-23 14:21:48 +01:00
commit 2570726524
5 changed files with 68 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11 AS server
WORKDIR /app
COPY ./requirements.txt /app
RUN pip install -r requirements.txt
COPY ./app.py /app
CMD python app.py